Skip to content

Commit 410f01a

Browse files
authored
Merge pull request InsightSoftwareConsortium#70 from InsightSoftwareConsortium/copyMoveDisable
COMP: ITK_DISALLOW_COPY_AND_ASSIGN -> ITK_DISALLOW_COPY_AND_MOVE
2 parents 5e8de5d + b866a68 commit 410f01a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

include/itkImageToPointSetFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ template< typename TInputImage, typename TOutputMesh >
3838
class ITK_TEMPLATE_EXPORT ImageToPointSetFilter: public ImageToMeshFilter< TInputImage, TOutputMesh >
3939
{
4040
public:
41-
ITK_DISALLOW_COPY_AND_ASSIGN(ImageToPointSetFilter);
41+
ITK_DISALLOW_COPY_AND_MOVE(ImageToPointSetFilter);
4242

4343
/** Standard class type alias. */
4444
using Self = ImageToPointSetFilter;

include/itkMeshToPolyDataFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ template< typename TInputMesh >
5858
class MeshToPolyDataFilter: public ProcessObject
5959
{
6060
public:
61-
ITK_DISALLOW_COPY_AND_ASSIGN(MeshToPolyDataFilter);
61+
ITK_DISALLOW_COPY_AND_MOVE(MeshToPolyDataFilter);
6262

6363
static constexpr unsigned int PointDimension = TInputMesh::PointDimension;
6464

include/itkPolyData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ template< typename TPixel, typename TCellPixel = TPixel >
3535
class ITK_TEMPLATE_EXPORT PolyData: public DataObject
3636
{
3737
public:
38-
ITK_DISALLOW_COPY_AND_ASSIGN(PolyData);
38+
ITK_DISALLOW_COPY_AND_MOVE(PolyData);
3939

4040
using Self = PolyData;
4141
using Superclass = DataObject;

include/itkPolyDataToMeshFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ template <typename TInputPolyData>
3939
class PolyDataToMeshFilter : public ProcessObject
4040
{
4141
public:
42-
ITK_DISALLOW_COPY_AND_ASSIGN(PolyDataToMeshFilter);
42+
ITK_DISALLOW_COPY_AND_MOVE(PolyDataToMeshFilter);
4343

4444
/** Standard class typedefs. */
4545
using Self = PolyDataToMeshFilter<TInputPolyData>;

0 commit comments

Comments
 (0)