Skip to content

Commit

Permalink
BUG: Fix Superclass name in RTTI macro
Browse files Browse the repository at this point in the history
Fix Superclass name in RTTI macro.
  • Loading branch information
jhlegarreta authored and dzenanz committed Jan 2, 2023
1 parent ec1c6cd commit 84d402a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -101,7 +101,7 @@ class ITK_TEMPLATE_EXPORT MovingHistogramImageFilter
itkNewMacro(Self);

/** Runtime information support. */
itkTypeMacro(MovingHistogramImageFilter, MovingHistogramImageFilter);
itkTypeMacro(MovingHistogramImageFilter, MovingHistogramImageFilterBase);

/** Image related type alias. */
using InputImageType = TInputImage;
Expand Down
Expand Up @@ -122,7 +122,7 @@ class ITK_TEMPLATE_EXPORT ImageToSpatialObjectMetric : public SingleValuedCostFu
using ParametersType = Superclass::ParametersType;

/** Run-time type information (and related methods). */
itkTypeMacro(ImageToSpatialObjectMetric, Object);
itkTypeMacro(ImageToSpatialObjectMetric, SingleValuedCostFunction);

/** Get/Set the FixedImage. */
itkSetConstObjectMacro(FixedImage, FixedImageType);
Expand Down

0 comments on commit 84d402a

Please sign in to comment.