Skip to content

Commit b260806

Browse files
committed
STYLE: Do not use double underscore defines
From Programming in C++, Rules and Recommendations : The use of two underscores (`__') in identifiers is reserved for the compiler's internal use according to the ANSI-C standard. Following the change in ITK: InsightSoftwareConsortium/ITK@8e12072
1 parent aaa8c25 commit b260806

20 files changed

+49
-49
lines changed

src/Developer/ImageFilter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilter_h
2-
#define __ImageFilter_h
1+
#ifndef ImageFilter_h
2+
#define ImageFilter_h
33

44
#include "itkImageToImageFilter.h"
55

@@ -37,4 +37,4 @@ class ImageFilter : public ImageToImageFilter<TImage, TImage>
3737
#endif
3838

3939

40-
#endif // __ImageFilter_h
40+
#endif // ImageFilter_h

src/Developer/ImageFilter.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilter_hxx
2-
#define __ImageFilter_hxx
1+
#ifndef ImageFilter_hxx
2+
#define ImageFilter_hxx
33

44
#include "itkObjectFactory.h"
55
#include "itkImageRegionIterator.h"

src/Developer/ImageFilterMultipleInputsDifferentType.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleInputsDifferentType_h
2-
#define __ImageFilterMultipleInputsDifferentType_h
1+
#ifndef ImageFilterMultipleInputsDifferentType_h
2+
#define ImageFilterMultipleInputsDifferentType_h
33

44
#include "itkImageToImageFilter.h"
55

@@ -54,4 +54,4 @@ class ImageFilterMultipleInputsDifferentType : public ImageToImageFilter<TImage,
5454
#endif
5555

5656

57-
#endif // __ImageFilterMultipleInputsDifferentType_h
57+
#endif // ImageFilterMultipleInputsDifferentType_h

src/Developer/ImageFilterMultipleInputsDifferentType.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleInputsDifferentType_hxx
2-
#define __ImageFilterMultipleInputsDifferentType_hxx
1+
#ifndef ImageFilterMultipleInputsDifferentType_hxx
2+
#define ImageFilterMultipleInputsDifferentType_hxx
33

44

55
#include "itkObjectFactory.h"

src/Developer/ImageFilterMultipleOutputs.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleOutputs_h
2-
#define __ImageFilterMultipleOutputs_h
1+
#ifndef ImageFilterMultipleOutputs_h
2+
#define ImageFilterMultipleOutputs_h
33

44
#include "itkImageToImageFilter.h"
55

@@ -46,4 +46,4 @@ class ImageFilterMultipleOutputs : public ImageToImageFilter<TImage, TImage>
4646
#endif
4747

4848

49-
#endif // __ImageFilterMultipleOutputs_h
49+
#endif // ImageFilterMultipleOutputs_h

src/Developer/ImageFilterMultipleOutputs.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleOutputs_hxx
2-
#define __ImageFilterMultipleOutputs_hxx
1+
#ifndef ImageFilterMultipleOutputs_hxx
2+
#define ImageFilterMultipleOutputs_hxx
33

44

55
#include "itkObjectFactory.h"

src/Developer/ImageFilterMultipleOutputsDifferentType.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleOutputsDifferentType_h
2-
#define __ImageFilterMultipleOutputsDifferentType_h
1+
#ifndef ImageFilterMultipleOutputsDifferentType_h
2+
#define ImageFilterMultipleOutputsDifferentType_h
33

44
#include "itkImageToImageFilter.h"
55

@@ -52,4 +52,4 @@ class ImageFilterMultipleOutputsDifferentType
5252
#endif
5353

5454

55-
#endif // __ImageFilterMultipleOutputsDifferentType_h
55+
#endif // ImageFilterMultipleOutputsDifferentType_h

src/Developer/ImageFilterMultipleOutputsDifferentType.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterMultipleOutputsDifferentType_hxx
2-
#define __ImageFilterMultipleOutputsDifferentType_hxx
1+
#ifndef ImageFilterMultipleOutputsDifferentType_hxx
2+
#define ImageFilterMultipleOutputsDifferentType_hxx
33

44

55
#include "itkObjectFactory.h"

src/Developer/ImageFilterX.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterX_h
2-
#define __ImageFilterX_h
1+
#ifndef ImageFilterX_h
2+
#define ImageFilterX_h
33

44
#include "itkImageToImageFilter.h"
55

src/Developer/ImageFilterX.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef __ImageFilterX_hxx
2-
#define __ImageFilterX_hxx
1+
#ifndef ImageFilterX_hxx
2+
#define ImageFilterX_hxx
33

44
#include "itkObjectFactory.h"
55
#include "itkImageRegionIterator.h"

0 commit comments

Comments
 (0)