Skip to content

Commit fa14977

Browse files
authored
Merge pull request #22 from thewtex/typename-warnings
COMP: Address typename outside of template warnings.
2 parents 4acead8 + 5627f71 commit fa14977

12 files changed

+12
-12
lines changed

test/CoocurrenceTextureFeaturesImageFilterInstantiationTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int CoocurrenceTextureFeaturesImageFilterInstantiationTest( int argc, char *argv
4545
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
4646
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
4747
typedef itk::ImageFileReader< InputImageType > ReaderType;
48-
typedef itk::Neighborhood< typename InputImageType::PixelType,
48+
typedef itk::Neighborhood< InputImageType::PixelType,
4949
InputImageType::ImageDimension > NeighborhoodType;
5050

5151

test/CoocurrenceTextureFeaturesImageFilterTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ int CoocurrenceTextureFeaturesImageFilterTest( int argc, char *argv[] )
4747
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
4848
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
4949
typedef itk::ImageFileReader< InputImageType > ReaderType;
50-
typedef itk::Neighborhood< typename InputImageType::PixelType,
50+
typedef itk::Neighborhood< InputImageType::PixelType,
5151
InputImageType::ImageDimension > NeighborhoodType;
5252

5353
// Create and set up a reader

test/CoocurrenceTextureFeaturesImageFilterTestSeparateFeatures.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ int CoocurrenceTextureFeaturesImageFilterTestSeparateFeatures( int argc, char *a
5353
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5454
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
5555
typedef itk::ImageFileReader< InputImageType > ReaderType;
56-
typedef itk::Neighborhood< typename InputImageType::PixelType,
56+
typedef itk::Neighborhood< InputImageType::PixelType,
5757
InputImageType::ImageDimension > NeighborhoodType;
5858

5959
// Create and set up a reader

test/CoocurrenceTextureFeaturesImageFilterTestVectorImageSeparateFeatures.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ int CoocurrenceTextureFeaturesImageFilterTestVectorImageSeparateFeatures( int ar
5353
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5454
typedef itk::VectorImage< OutputPixelType, ImageDimension > OutputImageType;
5555
typedef itk::ImageFileReader< InputImageType > ReaderType;
56-
typedef itk::Neighborhood< typename InputImageType::PixelType,
56+
typedef itk::Neighborhood< InputImageType::PixelType,
5757
InputImageType::ImageDimension > NeighborhoodType;
5858

5959
// Create and set up a reader

test/CoocurrenceTextureFeaturesImageFilterTestWithVectorImage.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ int CoocurrenceTextureFeaturesImageFilterTestWithVectorImage( int argc, char *ar
4949
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5050
typedef itk::VectorImage< OutputPixelType, ImageDimension > OutputImageType;
5151
typedef itk::ImageFileReader< InputImageType > ReaderType;
52-
typedef itk::Neighborhood< typename InputImageType::PixelType,
52+
typedef itk::Neighborhood< InputImageType::PixelType,
5353
InputImageType::ImageDimension > NeighborhoodType;
5454

5555
// Create and set up a reader

test/CoocurrenceTextureFeaturesImageFilterTestWithoutMask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ int CoocurrenceTextureFeaturesImageFilterTestWithoutMask( int argc, char *argv[]
5151
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5252
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
5353
typedef itk::ImageFileReader< InputImageType > ReaderType;
54-
typedef itk::Neighborhood< typename InputImageType::PixelType,
54+
typedef itk::Neighborhood< InputImageType::PixelType,
5555
InputImageType::ImageDimension > NeighborhoodType;
5656

5757
// Create and set up a reader

test/RunLengthTextureFeaturesImageFilterInstantiationTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int RunLengthTextureFeaturesImageFilterInstantiationTest( int argc, char *argv[]
4545
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
4646
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
4747
typedef itk::ImageFileReader< InputImageType > ReaderType;
48-
typedef itk::Neighborhood< typename InputImageType::PixelType,
48+
typedef itk::Neighborhood< InputImageType::PixelType,
4949
InputImageType::ImageDimension > NeighborhoodType;
5050

5151

test/RunLengthTextureFeaturesImageFilterTest.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ int RunLengthTextureFeaturesImageFilterTest( int argc, char *argv[] )
5454
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5555
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
5656
typedef itk::ImageFileReader< InputImageType > ReaderType;
57-
typedef itk::Neighborhood< typename InputImageType::PixelType,
57+
typedef itk::Neighborhood< InputImageType::PixelType,
5858
InputImageType::ImageDimension > NeighborhoodType;
5959

6060
// Create and set up a reader

test/RunLengthTextureFeaturesImageFilterTestSeparateFeatures.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ int RunLengthTextureFeaturesImageFilterTestSeparateFeatures( int argc, char *arg
5555
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5656
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
5757
typedef itk::ImageFileReader< InputImageType > ReaderType;
58-
typedef itk::Neighborhood< typename InputImageType::PixelType,
58+
typedef itk::Neighborhood< InputImageType::PixelType,
5959
InputImageType::ImageDimension > NeighborhoodType;
6060

6161

test/RunLengthTextureFeaturesImageFilterTestVectorImageSeparateFeatures.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ int RunLengthTextureFeaturesImageFilterTestVectorImageSeparateFeatures( int argc
5757
typedef itk::Image< InputPixelType, ImageDimension > InputImageType;
5858
typedef itk::Image< OutputPixelType, ImageDimension > OutputImageType;
5959
typedef itk::ImageFileReader< InputImageType > ReaderType;
60-
typedef itk::Neighborhood< typename InputImageType::PixelType,
60+
typedef itk::Neighborhood< InputImageType::PixelType,
6161
InputImageType::ImageDimension > NeighborhoodType;
6262

6363
// Create and set up a reader

0 commit comments

Comments
 (0)