Skip to content

Commit

Permalink
Remove inline in CContingencyTableEvaluation
Browse files Browse the repository at this point in the history
CContingencyTableEvaluation::get_evaluation_direction function was defined as an inline in the implementation. this caused problems by compilation errors of modular interfaces.
thanks for the bug report Wenlin Hu!
  • Loading branch information
vigsterkr committed Mar 12, 2014
1 parent 52b595e commit d9c535e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/evaluation/ContingencyTableEvaluation.cpp
Expand Up @@ -52,7 +52,7 @@ float64_t CContingencyTableEvaluation::evaluate(CLabels* predicted, CLabels* gro
return 42;
}

inline EEvaluationDirection CContingencyTableEvaluation::get_evaluation_direction() const
EEvaluationDirection CContingencyTableEvaluation::get_evaluation_direction() const
{
switch (m_type)
{
Expand Down

0 comments on commit d9c535e

Please sign in to comment.