Skip to content

Commit

Permalink
Merge pull request #70 from InsightSoftwareConsortium/copyMoveDisable
Browse files Browse the repository at this point in the history
COMP: ITK_DISALLOW_COPY_AND_ASSIGN -> ITK_DISALLOW_COPY_AND_MOVE
  • Loading branch information
thewtex authored Aug 20, 2024
2 parents 5e8de5d + b866a68 commit 410f01a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/itkImageToPointSetFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ template< typename TInputImage, typename TOutputMesh >
class ITK_TEMPLATE_EXPORT ImageToPointSetFilter: public ImageToMeshFilter< TInputImage, TOutputMesh >
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(ImageToPointSetFilter);
ITK_DISALLOW_COPY_AND_MOVE(ImageToPointSetFilter);

/** Standard class type alias. */
using Self = ImageToPointSetFilter;
Expand Down
2 changes: 1 addition & 1 deletion include/itkMeshToPolyDataFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ template< typename TInputMesh >
class MeshToPolyDataFilter: public ProcessObject
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(MeshToPolyDataFilter);
ITK_DISALLOW_COPY_AND_MOVE(MeshToPolyDataFilter);

static constexpr unsigned int PointDimension = TInputMesh::PointDimension;

Expand Down
2 changes: 1 addition & 1 deletion include/itkPolyData.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ template< typename TPixel, typename TCellPixel = TPixel >
class ITK_TEMPLATE_EXPORT PolyData: public DataObject
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(PolyData);
ITK_DISALLOW_COPY_AND_MOVE(PolyData);

using Self = PolyData;
using Superclass = DataObject;
Expand Down
2 changes: 1 addition & 1 deletion include/itkPolyDataToMeshFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ template <typename TInputPolyData>
class PolyDataToMeshFilter : public ProcessObject
{
public:
ITK_DISALLOW_COPY_AND_ASSIGN(PolyDataToMeshFilter);
ITK_DISALLOW_COPY_AND_MOVE(PolyDataToMeshFilter);

/** Standard class typedefs. */
using Self = PolyDataToMeshFilter<TInputPolyData>;
Expand Down

0 comments on commit 410f01a

Please sign in to comment.