Skip to content

Commit 1f5c55e

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 d318cd6 commit 1f5c55e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/itkFDFImageIO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace itk
3434
class IOFDF_EXPORT FDFImageIO : public ImageIOBase
3535
{
3636
public:
37-
ITK_DISALLOW_COPY_AND_ASSIGN(FDFImageIO);
37+
ITK_DISALLOW_COPY_AND_MOVE(FDFImageIO);
3838

3939
/** Standard class type alias. */
4040
using Self = FDFImageIO;

include/itkFDFImageIOFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace itk
3030
class IOFDF_EXPORT FDFImageIOFactory : public ObjectFactoryBase
3131
{
3232
public:
33-
ITK_DISALLOW_COPY_AND_ASSIGN(FDFImageIOFactory);
33+
ITK_DISALLOW_COPY_AND_MOVE(FDFImageIOFactory);
3434

3535
/** Standard class type alias. */
3636
using Self = FDFImageIOFactory;

0 commit comments

Comments
 (0)