File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class ITK_TEMPLATE_EXPORT BoundingBox : public Object
8282 itkOverrideGetNameOfClassMacro (BoundingBox);
8383
8484 /* * Method for creation through the object factory. */
85- itkNewMacro (Self);
85+ itkFactorylessNewMacro (Self);
8686
8787 /* Number of corners of this bounding box. Equals `pow(2, VPointDimension)` */
8888 static constexpr SizeValueType NumberOfCorners = SizeValueType{ 1 } << VPointDimension;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class ITK_TEMPLATE_EXPORT VectorContainer
7171 using STLContainerType = VectorType;
7272
7373 /* * Method for creation through the object factory. */
74- itkNewMacro (Self);
74+ itkFactorylessNewMacro (Self);
7575
7676 /* * \see LightObject::GetNameOfClass() */
7777 itkOverrideGetNameOfClassMacro (VectorContainer);
Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ class ITK_TEMPLATE_EXPORT ScalableAffineTransform : public AffineTransform<TPara
4646 itkOverrideGetNameOfClassMacro (ScalableAffineTransform);
4747
4848 /* * New macro for creation of through a Smart Pointer */
49- itkNewMacro (Self);
49+ itkFactorylessNewMacro (Self);
50+ itkCloneMacro (Self);
5051
5152 /* * Dimension of the domain space. */
5253 static constexpr unsigned int InputSpaceDimension = VDimension;
You can’t perform that action at this time.
0 commit comments