Skip to content

Commit 3d2cd90

Browse files
committed
STYLE: Remove typename from itk::ImageRegionConstIterator<TImage>;
Follow-up to pull request InsightSoftwareConsortium#5804 commit ad0eaca "STYLE: Remove redundant `typename` in type aliases", Hans Johnson, 15 Feb 2026
1 parent 4db53ff commit 3d2cd90

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/Core/Common/include/itkFloodFilledFunctionConditionalConstIterator.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ void
129129
FloodFilledFunctionConditionalConstIterator<TImage, TFunction>::FindSeedPixels()
130130
{
131131
// Create an iterator that will walk the input image
132-
using IRIType = typename itk::ImageRegionConstIterator<TImage>;
132+
using IRIType = itk::ImageRegionConstIterator<TImage>;
133133

134134
// Now we search the input image for the first pixel which is inside
135135
// the function of interest

Modules/Core/Common/include/itkShapedFloodFilledFunctionConditionalConstIterator.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void
112112
ShapedFloodFilledFunctionConditionalConstIterator<TImage, TFunction>::FindSeedPixel()
113113
{
114114
// Create an iterator that will walk the input image
115-
using IRIType = typename itk::ImageRegionConstIterator<TImage>;
115+
using IRIType = itk::ImageRegionConstIterator<TImage>;
116116

117117
// Now we search the input image for the first pixel which is inside
118118
// the function of interest
@@ -136,7 +136,7 @@ void
136136
ShapedFloodFilledFunctionConditionalConstIterator<TImage, TFunction>::FindSeedPixels()
137137
{
138138
// Create an iterator that will walk the input image
139-
using IRIType = typename itk::ImageRegionConstIterator<TImage>;
139+
using IRIType = itk::ImageRegionConstIterator<TImage>;
140140

141141
// Now we search the input image for the first pixel which is inside
142142
// the function of interest

0 commit comments

Comments
 (0)