Skip to content

Commit

Permalink
STYLE: Rename ITK_DISALLOW_COPY_AND_ASSIGN to ITK_DISALLOW_COPY_AND_MOVE
Browse files Browse the repository at this point in the history
Fixes changes made in #2053. ITK_DISALLOW_COPY_AND_ASSIGN will be used if ITK_FUTURE_LEGACY_REMOVE=OFF.
  • Loading branch information
mseng10 committed Dec 30, 2020
1 parent b8e642e commit 918d7b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Registration/itkScaleSkewAngle2DTransform.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class ITK_TEMPLATE_EXPORT ScaleSkewAngle2DTransform :
void ComputeMatrixParameters(void) ITK_OVERRIDE;

private:
ITK_DISALLOW_COPY_AND_ASSIGN(ScaleSkewAngle2DTransform);
ITK_DISALLOW_COPY_AND_MOVE(ScaleSkewAngle2DTransform);

/** If true, parameters[3] is used for scaling in x and y. */
bool m_UseSingleScale;
Expand Down
2 changes: 1 addition & 1 deletion src/Registration/itkSimilarity2DTransform.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class ITK_TEMPLATE_EXPORT Similarity2DTransform :
}

private:
ITK_DISALLOW_COPY_AND_ASSIGN(Similarity2DTransform);
ITK_DISALLOW_COPY_AND_MOVE(Similarity2DTransform);

ScaleType m_Scale;
}; // class Similarity2DTransform
Expand Down

0 comments on commit 918d7b0

Please sign in to comment.