Skip to content

Commit

Permalink
BUG: Replace deprecated macro in 1D FFT classes
Browse files Browse the repository at this point in the history
Fixes static assert build failures in Mac11.0-AppleClang-dbg nightly
build

https://open.cdash.org/viewBuildError.php?type=0&buildid=7500725
  • Loading branch information
tbirdso authored and hjmjohnson committed Oct 8, 2021
1 parent c2bf292 commit 2c2a484
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ template <typename TInputImage, typename TOutputImage = TInputImage>
class ITK_TEMPLATE_EXPORT ComplexToComplex1DFFTImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(ComplexToComplex1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(ComplexToComplex1DFFTImageFilter);

/** Standard class type alias. */
using InputImageType = TInputImage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT FFTWForward1DFFTImageFilter : public Forward1DFFTImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(FFTWForward1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(FFTWForward1DFFTImageFilter);

using Self = FFTWForward1DFFTImageFilter;
using Superclass = Forward1DFFTImageFilter<TInputImage, TOutputImage>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT FFTWInverse1DFFTImageFilter : public Inverse1DFFTImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(FFTWInverse1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(FFTWInverse1DFFTImageFilter);

using Self = FFTWInverse1DFFTImageFilter;
using Superclass = Inverse1DFFTImageFilter<TInputImage, TOutputImage>;
Expand Down
2 changes: 1 addition & 1 deletion Modules/Filtering/FFT/include/itkForward1DFFTImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT Forward1DFFTImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(Forward1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(Forward1DFFTImageFilter);

/** Standard class type alias. */
using InputImageType = TInputImage;
Expand Down
2 changes: 1 addition & 1 deletion Modules/Filtering/FFT/include/itkInverse1DFFTImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT Inverse1DFFTImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(Inverse1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(Inverse1DFFTImageFilter);

/** Standard class type alias. */
using InputImageType = TInputImage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ITK_TEMPLATE_EXPORT VnlComplexToComplex1DFFTImageFilter
: public ComplexToComplex1DFFTImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(VnlComplexToComplex1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(VnlComplexToComplex1DFFTImageFilter);

/** Standard class type alias. */
using Self = VnlComplexToComplex1DFFTImageFilter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT VnlForward1DFFTImageFilter : public Forward1DFFTImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(VnlForward1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(VnlForward1DFFTImageFilter);

/** Standard class type alias. */
using Self = VnlForward1DFFTImageFilter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ template <typename TInputImage,
class ITK_TEMPLATE_EXPORT VnlInverse1DFFTImageFilter : public Inverse1DFFTImageFilter<TInputImage, TOutputImage>
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(VnlInverse1DFFTImageFilter);
ITK_DISALLOW_COPY_AND_MOVE(VnlInverse1DFFTImageFilter);

/** Standard class type alias. */
using Self = VnlInverse1DFFTImageFilter;
Expand Down

0 comments on commit 2c2a484

Please sign in to comment.