Skip to content

Commit

Permalink
COMP: Fix MSVC error C2516: 'ConstIterator': is not a legal base class
Browse files Browse the repository at this point in the history
Originally reported by Astha, March 14, 2022, and further discussed at
"ITK build Error in itk::ShapedNeighborhoodIterator",
https://discourse.itk.org/t/itk-build-error-in-itk-shapedneighborhooditerator/4861
  • Loading branch information
N-Dekker committed Jan 2, 2023
1 parent ac019e3 commit 872fa19
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -179,7 +179,7 @@ class ITK_TEMPLATE_EXPORT ShapedNeighborhoodIterator
using typename Superclass::IndexValueType;

/** An iterator for the ShapedNeighborhood classes. */
struct Iterator : public ConstIterator
struct Iterator : public Superclass::ConstIterator
{
Iterator() = default;
Iterator(Self * s)
Expand Down

0 comments on commit 872fa19

Please sign in to comment.