Skip to content

Commit

Permalink
BUG: Delete non-virtual function in DisplacementFieldTransform
Browse files Browse the repository at this point in the history
Addresses #3388
  • Loading branch information
tbirdso committed Apr 20, 2022
1 parent 6fd6079 commit 93a3b51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ class ITK_TEMPLATE_EXPORT DisplacementFieldTransform : public Transform<TParamet
virtual void
SetDisplacementField(DisplacementFieldType * field);
virtual void
SetDisplacementField(VectorImageDisplacementFieldType * field);
virtual void SetDisplacementField(std::nullptr_t) = delete;
SetDisplacementField(VectorImageDisplacementFieldType * field);
void SetDisplacementField(std::nullptr_t) = delete;
itkGetModifiableObjectMacro(DisplacementField, DisplacementFieldType);

/** Get/Set the inverse displacement field. This must be supplied by the user for
Expand Down

0 comments on commit 93a3b51

Please sign in to comment.