Skip to content

Commit

Permalink
COMP: Use override instead of old ITK macro ITK_OVERRIDE
Browse files Browse the repository at this point in the history
The error message was:

C:\Dev\ITK-git\Modules\Remote\Shape\include\itkMeshProcrustesAlignFilter.h(203,70): error C2143: syntax error: missing ';' before 'static_assert'
  • Loading branch information
dzenanz committed Nov 6, 2024
1 parent 53c5580 commit 858165e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/itkMeshProcrustesAlignFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class ITK_TEMPLATE_EXPORT MeshProcrustesAlignFilter : public ProcessObject
using itk::ProcessObject::MakeOutput;

virtual itk::ProcessObject::DataObjectPointer
MakeOutput(itk::ProcessObject::DataObjectPointerArraySizeType idx) ITK_OVERRIDE;
MakeOutput(itk::ProcessObject::DataObjectPointerArraySizeType idx) override;

/** Normalization with Scaling on (default)*/
void
Expand Down Expand Up @@ -299,7 +299,7 @@ class ITK_TEMPLATE_EXPORT MeshProcrustesAlignFilter : public ProcessObject

/** Performs the alignment. */
virtual void
GenerateData() ITK_OVERRIDE;
GenerateData() override;

/** Calculates the center coordinates of the specified input mesh. */
TranslationType
Expand Down

0 comments on commit 858165e

Please sign in to comment.