Skip to content

Commit

Permalink
STYLE: Call ITK_DISALLOW_COPY_AND_MOVE, not ITK_DISALLOW_COPY_AND_ASSIGN
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Rit committed Oct 16, 2020
1 parent ba81180 commit 8ac7f0b
Show file tree
Hide file tree
Showing 202 changed files with 805 additions and 0 deletions.
1 change: 1 addition & 0 deletions documentation/Doxygen/doxygen.config.in
Original file line number Diff line number Diff line change
Expand Up @@ -2175,6 +2175,7 @@ PREDEFINED = "itkNotUsed(x)=" \
"ITK_OVERRIDE= override " \
"ITK_NULLPTR= nullptr " \
"ITK_NOEXCEPT= noexcept " \
"ITK_DISALLOW_COPY_AND_MOVE(type)=" \
"ITK_DISALLOW_COPY_AND_ASSIGN(type)=" \
"ITK_FORCE_EXPORT_MACRO(X)="

Expand Down
4 changes: 4 additions & 0 deletions include/rtkADMMTotalVariationConeBeamReconstructionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ class ADMMTotalVariationConeBeamReconstructionFilter
: public rtk::IterativeConeBeamReconstructionFilter<TOutputImage, TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ADMMTotalVariationConeBeamReconstructionFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ADMMTotalVariationConeBeamReconstructionFilter);
#endif

/** Standard class type alias. */
using Self = ADMMTotalVariationConeBeamReconstructionFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkADMMTotalVariationConjugateGradientOperator.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ template <typename TOutputImage,
class ADMMTotalVariationConjugateGradientOperator : public ConjugateGradientOperator<TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ADMMTotalVariationConjugateGradientOperator);
#else
ITK_DISALLOW_COPY_AND_MOVE(ADMMTotalVariationConjugateGradientOperator);
#endif

/** Standard class type alias. */
using Self = ADMMTotalVariationConjugateGradientOperator;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkADMMWaveletsConeBeamReconstructionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ class ADMMWaveletsConeBeamReconstructionFilter
: public rtk::IterativeConeBeamReconstructionFilter<TOutputImage, TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ADMMWaveletsConeBeamReconstructionFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ADMMWaveletsConeBeamReconstructionFilter);
#endif

/** Standard class type alias. */
using Self = ADMMWaveletsConeBeamReconstructionFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkADMMWaveletsConjugateGradientOperator.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ template <typename TOutputImage>
class ADMMWaveletsConjugateGradientOperator : public ConjugateGradientOperator<TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ADMMWaveletsConjugateGradientOperator);
#else
ITK_DISALLOW_COPY_AND_MOVE(ADMMWaveletsConjugateGradientOperator);
#endif

/** Standard class type alias. */
using Self = ADMMWaveletsConjugateGradientOperator;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkAddMatrixAndDiagonalImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ template <class TDiagonal,
class AddMatrixAndDiagonalImageFilter : public itk::ImageToImageFilter<TMatrix, TMatrix>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(AddMatrixAndDiagonalImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(AddMatrixAndDiagonalImageFilter);
#endif

/** Standard class type alias. */
using Self = AddMatrixAndDiagonalImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkAdditiveGaussianNoiseImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ template <class TInputImage>
class ITK_EXPORT AdditiveGaussianNoiseImageFilter : public itk::ImageToImageFilter<TInputImage, TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(AdditiveGaussianNoiseImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(AdditiveGaussianNoiseImageFilter);
#endif

/** Standard class type alias. */
using Self = AdditiveGaussianNoiseImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkAmsterdamShroudImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ class ITK_EXPORT AmsterdamShroudImageFilter
: public itk::ImageToImageFilter<TInputImage, itk::Image<double, TInputImage::ImageDimension - 1>>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(AmsterdamShroudImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(AmsterdamShroudImageFilter);
#endif

/** Standard class type alias. */
using Self = AmsterdamShroudImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkAverageOutOfROIImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ template <class TInputImage, class TROI = itk::Image<typename TInputImage::Pixel
class AverageOutOfROIImageFilter : public itk::InPlaceImageFilter<TInputImage, TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(AverageOutOfROIImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(AverageOutOfROIImageFilter);
#endif

/** Standard class type alias. */
using Self = AverageOutOfROIImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkBackProjectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ template <class TInputImage, class TOutputImage>
class BackProjectionImageFilter : public itk::InPlaceImageFilter<TInputImage, TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(BackProjectionImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(BackProjectionImageFilter);
#endif

/** Standard class type alias. */
using Self = BackProjectionImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkBackwardDifferenceDivergenceImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ template <typename TInputImage, typename TOutputImage = itk::Image<float, TInput
class BackwardDifferenceDivergenceImageFilter : public itk::ImageToImageFilter<TInputImage, TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(BackwardDifferenceDivergenceImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(BackwardDifferenceDivergenceImageFilter);
#endif

/** Extract dimension from input and output image. */
itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
Expand Down
4 changes: 4 additions & 0 deletions include/rtkBioscanGeometryReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ namespace rtk
class RTK_EXPORT BioscanGeometryReader : public itk::LightProcessObject
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(BioscanGeometryReader);
#else
ITK_DISALLOW_COPY_AND_MOVE(BioscanGeometryReader);
#endif

/** Standard type alias */
using Self = BioscanGeometryReader;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkBlockDiagonalMatrixVectorMultiplyImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ template <class TVectorImage,
class BlockDiagonalMatrixVectorMultiplyImageFilter : public itk::ImageToImageFilter<TVectorImage, TVectorImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(BlockDiagonalMatrixVectorMultiplyImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(BlockDiagonalMatrixVectorMultiplyImageFilter);
#endif

/** Standard class type alias. */
using Self = BlockDiagonalMatrixVectorMultiplyImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkBoellaardScatterCorrectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ template <class TInputImage, class TOutputImage = TInputImage>
class ITK_EXPORT BoellaardScatterCorrectionImageFilter : public itk::InPlaceImageFilter<TInputImage, TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(BoellaardScatterCorrectionImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(BoellaardScatterCorrectionImageFilter);
#endif

/** Standard class type alias. */
using Self = BoellaardScatterCorrectionImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConditionalMedianImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ template <typename TInputImage>
class ConditionalMedianImageFilter : public itk::InPlaceImageFilter<TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConditionalMedianImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConditionalMedianImageFilter);
#endif

/** Standard class type alias. */
using Self = ConditionalMedianImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientConeBeamReconstructionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ template <typename TOutputImage, typename TSingleComponentImage = TOutputImage,
class ConjugateGradientConeBeamReconstructionFilter : public IterativeConeBeamReconstructionFilter<TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientConeBeamReconstructionFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientConeBeamReconstructionFilter);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientConeBeamReconstructionFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientGetP_kPlusOneImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ template <typename TInputImage>
class ConjugateGradientGetP_kPlusOneImageFilter : public itk::ImageToImageFilter<TInputImage, TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientGetP_kPlusOneImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientGetP_kPlusOneImageFilter);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientGetP_kPlusOneImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientGetR_kPlusOneImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ template <typename TInputImage>
class ConjugateGradientGetR_kPlusOneImageFilter : public itk::ImageToImageFilter<TInputImage, TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientGetR_kPlusOneImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientGetR_kPlusOneImageFilter);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientGetR_kPlusOneImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientGetX_kPlusOneImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ template <typename TInputImage>
class ConjugateGradientGetX_kPlusOneImageFilter : public itk::ImageToImageFilter<TInputImage, TInputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientGetX_kPlusOneImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientGetX_kPlusOneImageFilter);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientGetX_kPlusOneImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ template <typename OutputImageType>
class ConjugateGradientImageFilter : public itk::InPlaceImageFilter<OutputImageType, OutputImageType>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientImageFilter);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientImageFilter);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConjugateGradientOperator.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ template <typename OutputImageType>
class ConjugateGradientOperator : public itk::ImageToImageFilter<OutputImageType, OutputImageType>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConjugateGradientOperator);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConjugateGradientOperator);
#endif

/** Standard class type alias. */
using Self = ConjugateGradientOperator;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConstantImageSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ template <typename TOutputImage>
class ITK_EXPORT ConstantImageSource : public itk::ImageSource<TOutputImage>
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConstantImageSource);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConstantImageSource);
#endif

/** Standard class type alias. */
using Self = ConstantImageSource;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkConvexShape.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ namespace rtk
class RTK_EXPORT ConvexShape : public itk::DataObject
{
public:
#if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(ConvexShape);
#else
ITK_DISALLOW_COPY_AND_MOVE(ConvexShape);
#endif

/** Standard class type alias. */
using Self = ConvexShape;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaAverageOutOfROIImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ class RTK_EXPORT CudaAverageOutOfROIImageFilter

{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaAverageOutOfROIImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaAverageOutOfROIImageFilter);
# endif

/** Standard class type alias. */
using Self = rtk::CudaAverageOutOfROIImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaBackProjectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ class ITK_EXPORT CudaBackProjectionImageFilter
: public itk::CudaInPlaceImageFilter<ImageType, ImageType, BackProjectionImageFilter<ImageType, ImageType>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaBackProjectionImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaBackProjectionImageFilter);
# endif

/** Standard class type alias. */
using BackProjectionImageFilterType = BackProjectionImageFilter<ImageType, ImageType>;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaConjugateGradientImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ class CudaConjugateGradientImageFilter
: public itk::CudaImageToImageFilter<TImage, TImage, ConjugateGradientImageFilter<TImage>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaConjugateGradientImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaConjugateGradientImageFilter);
# endif

/** Standard class type alias. */
using Self = rtk::CudaConjugateGradientImageFilter<TImage>;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaConstantVolumeSeriesSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ class RTK_EXPORT CudaConstantVolumeSeriesSource
ConstantImageSource<itk::CudaImage<float, 4>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaConstantVolumeSeriesSource);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaConstantVolumeSeriesSource);
# endif

/** Standard class type alias. */
using Self = rtk::CudaConstantVolumeSeriesSource;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaConstantVolumeSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ class RTK_EXPORT CudaConstantVolumeSource
ConstantImageSource<itk::CudaImage<float, 3>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaConstantVolumeSource);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaConstantVolumeSource);
# endif

/** Standard class type alias. */
using Self = rtk::CudaConstantVolumeSource;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaCropImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ class RTK_EXPORT CudaCropImageFilter
itk::CropImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaCropImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaCropImageFilter);
# endif

/** Standard class type alias. */
using ImageType = itk::CudaImage<float, 3>;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaCyclicDeformationImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ class RTK_EXPORT CudaCyclicDeformationImageFilter
itk::CudaImage<itk::CovariantVector<float, 3>, 3>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaCyclicDeformationImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaCyclicDeformationImageFilter);
# endif

/** Standard class type alias. */
using Self = rtk::CudaCyclicDeformationImageFilter;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaDisplacedDetectorImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ class RTK_EXPORT CudaDisplacedDetectorImageFilter
rtk::DisplacedDetectorImageFilter<itk::CudaImage<float, 3>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaDisplacedDetectorImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaDisplacedDetectorImageFilter);
# endif

/** Convenience type alias **/
using ImageType = itk::CudaImage<float, 3>;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaFDKBackProjectionImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ class RTK_EXPORT CudaFDKBackProjectionImageFilter
FDKBackProjectionImageFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaFDKBackProjectionImageFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaFDKBackProjectionImageFilter);
# endif

/** Standard class type alias. */
using ImageType = itk::CudaImage<float, 3>;
Expand Down
4 changes: 4 additions & 0 deletions include/rtkCudaFDKConeBeamReconstructionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ class RTK_EXPORT CudaFDKConeBeamReconstructionFilter
FDKConeBeamReconstructionFilter<itk::CudaImage<float, 3>, itk::CudaImage<float, 3>, float>>
{
public:
# if ITK_VERSION_MAJOR == 5 && ITK_VERSION_MINOR == 1
ITK_DISALLOW_COPY_AND_ASSIGN(CudaFDKConeBeamReconstructionFilter);
# else
ITK_DISALLOW_COPY_AND_MOVE(CudaFDKConeBeamReconstructionFilter);
# endif

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

0 comments on commit 8ac7f0b

Please sign in to comment.