Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/itkImageToPointSetFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ITK_TEMPLATE_EXPORT ImageToPointSetFilter: public ImageToMeshFilter< TInpu
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(ImageToPointSetFilter, ImageToMeshFilter);
itkOverrideGetNameOfClassMacro(ImageToPointSetFilter);

/** Some convenient type alias. */
using InputImageType = TInputImage;
Expand Down
2 changes: 1 addition & 1 deletion include/itkMeshToPolyDataFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class MeshToPolyDataFilter: public ProcessObject
using PolyDataType = PolyData< typename InputMeshType::PixelType >;

/** Run-time type information. */
itkTypeMacro( MeshToPolyDataFilter, ProcessObject );
itkOverrideGetNameOfClassMacro( MeshToPolyDataFilter);

/** Standard New macro. */
itkNewMacro( Self );
Expand Down
2 changes: 1 addition & 1 deletion include/itkPolyData.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ITK_TEMPLATE_EXPORT PolyData: public DataObject
itkNewMacro(Self);

/** Run-time type information (and related methods). */
itkTypeMacro(PolyData, DataObject);
itkOverrideGetNameOfClassMacro(PolyData);

/** Type of PointData or CellData */
using PixelType = TPixel;
Expand Down
2 changes: 1 addition & 1 deletion include/itkPolyDataToMeshFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class PolyDataToMeshFilter : public ProcessObject
itkNewMacro(Self);

/** Run-time type information. */
itkTypeMacro(PolyDataToMeshFilter, ProcessObject);
itkOverrideGetNameOfClassMacro(PolyDataToMeshFilter);

static constexpr unsigned int PointDimension = TInputPolyData::PointDimension;

Expand Down
Loading