Skip to content

Commit

Permalink
STYLE: use override consistently.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjmjohnson committed Feb 13, 2018
1 parent a7e9ed2 commit 7e3d7df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/itkGaussianRadialBasisFunction.h
Expand Up @@ -52,7 +52,7 @@ class ITK_TEMPLATE_EXPORT GaussianRadialBasisFunction : public RadialBasisFuncti
/** Evaluate at the specified input position */
ScalarType Evaluate(const ScalarType& input) const override;

virtual ScalarType EvaluateDerivative(const ScalarType& dist,const ArrayType& input,
ScalarType EvaluateDerivative(const ScalarType& dist,const ArrayType& input,
char mode,int element_id=0) const override;

protected:
Expand Down
2 changes: 1 addition & 1 deletion include/itkNeuralNetworkFileReader.h
Expand Up @@ -110,7 +110,7 @@ class ITK_TEMPLATE_EXPORT NeuralNetworkFileReader:public Object

protected:
NeuralNetworkFileReader();
~NeuralNetworkFileReader();
~NeuralNetworkFileReader() override;
void PrintSelf(std::ostream & os, Indent indent) const override;

private:
Expand Down
2 changes: 1 addition & 1 deletion include/itkNeuralNetworkFileWriter.h
Expand Up @@ -119,7 +119,7 @@ class ITK_TEMPLATE_EXPORT NeuralNetworkFileWriter:public Object

protected:
NeuralNetworkFileWriter();
~NeuralNetworkFileWriter();
~NeuralNetworkFileWriter() override;
void PrintSelf(std::ostream & os, Indent indent) const override;

private:
Expand Down

0 comments on commit 7e3d7df

Please sign in to comment.