Skip to content

Commit

Permalink
COMP: Update to new ITK_DISALLOW_COPY_AND_MOVE macro
Browse files Browse the repository at this point in the history
Replace the deprecated ITK_DISALLOW_COPY_AND_ASSIGN with
new better descriptive name ITK_DISALLOW_COPY_AND_MOVE.
  • Loading branch information
hjmjohnson committed Dec 28, 2020
1 parent beff186 commit b5724f9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/itkAnisotropicDiffusionLBRImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ template <typename TImage, typename TScalar = typename NumericTraits<typename TI
class AnisotropicDiffusionLBRImageFilter : public ImageToImageFilter<TImage, TImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(AnisotropicDiffusionLBRImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(AnisotropicDiffusionLBRImageFilter);

using Self = AnisotropicDiffusionLBRImageFilter;
using Superclass = ImageToImageFilter<TImage, TImage>;
Expand Down
2 changes: 1 addition & 1 deletion include/itkCoherenceEnhancingDiffusionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ template <typename TImage, typename TScalar = typename NumericTraits<typename TI
class CoherenceEnhancingDiffusionImageFilter : public AnisotropicDiffusionLBRImageFilter<TImage, TScalar>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(CoherenceEnhancingDiffusionImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(CoherenceEnhancingDiffusionImageFilter);

using Self = CoherenceEnhancingDiffusionImageFilter;
using Superclass = AnisotropicDiffusionLBRImageFilter<TImage, TScalar>;
Expand Down
2 changes: 1 addition & 1 deletion include/itkLinearAnisotropicDiffusionLBRImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ template <typename TImage, typename TScalar = typename NumericTraits<typename TI
class LinearAnisotropicDiffusionLBRImageFilter : public ImageToImageFilter<TImage, TImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(LinearAnisotropicDiffusionLBRImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(LinearAnisotropicDiffusionLBRImageFilter);

/** Standard class type alias. */
using Self = LinearAnisotropicDiffusionLBRImageFilter;
Expand Down
2 changes: 1 addition & 1 deletion include/itkStructureTensorImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ template <typename TImage,
class StructureTensorImageFilter : public ImageToImageFilter<TImage, TTensorImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(StructureTensorImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(StructureTensorImageFilter);

using Self = StructureTensorImageFilter;
using Superclass = ImageToImageFilter<TImage, TImage>;
Expand Down
2 changes: 1 addition & 1 deletion include/itkUnaryFunctorWithIndexImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ template <typename TInputImage, typename TOutputImage, typename TFunctor>
class UnaryFunctorWithIndexImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(UnaryFunctorWithIndexImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(UnaryFunctorWithIndexImageFilter);

using Self = UnaryFunctorWithIndexImageFilter;
using Superclass = ImageToImageFilter<TInputImage, TOutputImage>;
Expand Down

0 comments on commit b5724f9

Please sign in to comment.