Skip to content

Commit cfc577d

Browse files
mseng10hjmjohnson
authored andcommitted
STYLE: Rename ITK_DISALLOW_COPY_AND_ASSIGN to ITK_DISALLOW_COPY_AND_MOVE
Fixes changes made in #2053. ITK_DISALLOW_COPY_AND_ASSIGN will be used if ITK_FUTURE_LEGACY_REMOVE=OFF.
1 parent 439ef9f commit cfc577d

4 files changed

Lines changed: 4 additions & 4 deletions

include/itkNormalizedCorrelationTwoImageToOneImageMetric.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ template <typename TFixedImage, typename TMovingImage>
4444
class NormalizedCorrelationTwoImageToOneImageMetric : public TwoImageToOneImageMetric<TFixedImage, TMovingImage>
4545
{
4646
public:
47-
ITK_DISALLOW_COPY_AND_ASSIGN(NormalizedCorrelationTwoImageToOneImageMetric);
47+
ITK_DISALLOW_COPY_AND_MOVE(NormalizedCorrelationTwoImageToOneImageMetric);
4848

4949
/** Standard class type alias. */
5050
using Self = NormalizedCorrelationTwoImageToOneImageMetric;

include/itkSiddonJacobsRayCastInterpolateImageFunction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ template <typename TInputImage, typename TCoordRep = float>
5757
class SiddonJacobsRayCastInterpolateImageFunction : public InterpolateImageFunction<TInputImage, TCoordRep>
5858
{
5959
public:
60-
ITK_DISALLOW_COPY_AND_ASSIGN(SiddonJacobsRayCastInterpolateImageFunction);
60+
ITK_DISALLOW_COPY_AND_MOVE(SiddonJacobsRayCastInterpolateImageFunction);
6161

6262
/** Standard class type alias. */
6363
using Self = SiddonJacobsRayCastInterpolateImageFunction;

include/itkTwoImageToOneImageMetric.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ template <typename TFixedImage, typename TMovingImage>
5252
class TwoImageToOneImageMetric : public SingleValuedCostFunction
5353
{
5454
public:
55-
ITK_DISALLOW_COPY_AND_ASSIGN(TwoImageToOneImageMetric);
55+
ITK_DISALLOW_COPY_AND_MOVE(TwoImageToOneImageMetric);
5656

5757
/** Standard class type alias. */
5858
using Self = TwoImageToOneImageMetric;

include/itkTwoProjectionImageRegistrationMethod.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ template <typename TFixedImage, typename TMovingImage>
6565
class TwoProjectionImageRegistrationMethod : public ProcessObject
6666
{
6767
public:
68-
ITK_DISALLOW_COPY_AND_ASSIGN(TwoProjectionImageRegistrationMethod);
68+
ITK_DISALLOW_COPY_AND_MOVE(TwoProjectionImageRegistrationMethod);
6969

7070
/** Standard class type alias. */
7171
using Self = TwoProjectionImageRegistrationMethod;

0 commit comments

Comments
 (0)