Skip to content

Commit

Permalink
BUG: Fix Superclass type alias and name in RTTI macro
Browse files Browse the repository at this point in the history
Fix Superclass type alias, and fix its name accordingly in RTTI macro.
  • Loading branch information
jhlegarreta authored and dzenanz committed Apr 17, 2022
1 parent 4313386 commit e00832a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ITK_TEMPLATE_EXPORT FastMarchingImageToNodePairContainerAdaptor : public O
ITK_DISALLOW_COPY_AND_MOVE(FastMarchingImageToNodePairContainerAdaptor);

using Self = FastMarchingImageToNodePairContainerAdaptor;
using Superclass = LightObject;
using Superclass = Object;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;

Expand All @@ -62,7 +62,7 @@ class ITK_TEMPLATE_EXPORT FastMarchingImageToNodePairContainerAdaptor : public O
itkNewMacro(Self);

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

using Traits = FastMarchingTraits<TInput, TOutput>;
using NodePairType = typename Traits::NodePairType;
Expand Down

0 comments on commit e00832a

Please sign in to comment.