Skip to content
Snippets Groups Projects
Commit 4224d41f authored by Jordi Inglada's avatar Jordi Inglada
Browse files

WRG: neutralize warning for unused parameter

parent ff685ce6
Branches
Tags
No related merge requests found
......@@ -166,7 +166,8 @@ protected:
virtual TargetSampleType PredictRegression(const InputSampleType& input) const
{
itkGenericExceptionMacro(<< "Regression mode not implemented.");
}
(void)input;
}
virtual TargetSampleType PredictClassification(const InputSampleType& input) const = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment