Skip to content

Commit

Permalink
BUG: Fix class name in RTTI
Browse files Browse the repository at this point in the history
Fix class name in RTTI.

Fixes:
```
Name of Class = Image
Name of Superclass = Object
Class name provided does not match object's NameOfClass
```

raised for example in:
https://open.cdash.org/test/667512903
  • Loading branch information
jhlegarreta committed Apr 13, 2022
1 parent 4bbccf2 commit 4bf79ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ImageRegistrationMethodImageSource : public itk::Object
itkNewMacro(Self);

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


using MovingImageType = itk::Image<TMovingPixelType, VDimension>;
Expand Down

0 comments on commit 4bf79ac

Please sign in to comment.