Skip to content

Commit

Permalink
COMP: Use C++11 override directly
Browse files Browse the repository at this point in the history
git grep -l "ITK_OVERRIDE" |   fgrep -v itk_compiler_detection.h | fgrep -v CMakeLists.txt |fgrep -v .cmake |   xargs sed -i '' -e "s/ITK_OVERRIDE/override/g"
  • Loading branch information
hjmjohnson committed Jan 22, 2018
1 parent f242665 commit e8b997e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/itkAdditiveGaussianNoiseMeshFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ public MeshToMeshFilter< TInput, TOutput >
protected:

AdditiveGaussianNoiseMeshFilter();
~AdditiveGaussianNoiseMeshFilter() ITK_OVERRIDE{}
~AdditiveGaussianNoiseMeshFilter() override{}

void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
void PrintSelf(std::ostream & os, Indent indent) const override;

/** Generate Requested Data */
void GenerateData() ITK_OVERRIDE;
void GenerateData() override;

CoordRepType m_Mean;
CoordRepType m_Sigma;
Expand Down
6 changes: 3 additions & 3 deletions include/itkAdditiveGaussianNoiseQuadEdgeMeshFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ class AdditiveGaussianNoiseQuadEdgeMeshFilter:
protected:

AdditiveGaussianNoiseQuadEdgeMeshFilter();
~AdditiveGaussianNoiseQuadEdgeMeshFilter() ITK_OVERRIDE{}
~AdditiveGaussianNoiseQuadEdgeMeshFilter() override{}

void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
void PrintSelf(std::ostream & os, Indent indent) const override;

/** Generate Requested Data */
void GenerateData(void) ITK_OVERRIDE;
void GenerateData(void) override;

CoordRepType m_Mean;
CoordRepType m_Sigma;
Expand Down

0 comments on commit e8b997e

Please sign in to comment.