Skip to content

Commit

Permalink
BUG: Wrong superclass identified for child class.
Browse files Browse the repository at this point in the history
The Superclass was not correctly identified.
  • Loading branch information
hjmjohnson authored and dzenanz committed Sep 21, 2021
1 parent 4f30980 commit e64795c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class FrequencyFFTLayoutImageRegionIteratorWithIndex
public:
/** Standard class type alias. */
using Self = FrequencyFFTLayoutImageRegionIteratorWithIndex;
using Superclass = ImageRegionIteratorWithIndex<TImage>;
using Superclass = FrequencyFFTLayoutImageRegionConstIteratorWithIndex<TImage>;

/** Types inherited from the Superclass */
using typename Superclass::IndexType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class FrequencyHalfHermitianFFTLayoutImageRegionIteratorWithIndex
public:
/** Standard class type alias. */
using Self = FrequencyHalfHermitianFFTLayoutImageRegionIteratorWithIndex;
using Superclass = ImageRegionIteratorWithIndex<TImage>;
using Superclass = FrequencyHalfHermitianFFTLayoutImageRegionConstIteratorWithIndex<TImage>;

/** Types inherited from the Superclass */
using typename Superclass::IndexType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class FrequencyShiftedFFTLayoutImageRegionIteratorWithIndex
public:
/** Standard class type alias. */
using Self = FrequencyShiftedFFTLayoutImageRegionIteratorWithIndex;
using Superclass = ImageRegionIteratorWithIndex<TImage>;
using Superclass = FrequencyShiftedFFTLayoutImageRegionConstIteratorWithIndex<TImage>;

/** Types inherited from the Superclass */
using typename Superclass::IndexType;
Expand Down

0 comments on commit e64795c

Please sign in to comment.