Skip to content

Commit 9cab6d5

Browse files
committed
COMP: Remove inclusion of .hxx files as headers
The ability to include either .h or .hxx files as header files required recursively reading the .h files twice. The added complexity is unnecessary, costly, and can confuse static analysis tools that monitor header guardes (due to reaching the maximum depth of recursion limits for nested #ifdefs in checking).
1 parent ee368c1 commit 9cab6d5

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

include/itkLabelSetDilateImageFilter.hxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#ifndef itkLabelSetDilateImageFilter_hxx
1919
#define itkLabelSetDilateImageFilter_hxx
2020

21-
#include "itkLabelSetDilateImageFilter.h"
2221
#include "itkImageRegionConstIterator.h"
2322
#include "itkImageRegionIterator.h"
2423

include/itkLabelSetErodeImageFilter.hxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#ifndef itkLabelSetErodeImageFilter_hxx
1919
#define itkLabelSetErodeImageFilter_hxx
2020

21-
#include "itkLabelSetErodeImageFilter.h"
2221
#include "itkImageRegionConstIterator.h"
2322
#include "itkImageRegionIterator.h"
2423

include/itkLabelSetMorphBaseImageFilter.hxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#ifndef itkLabelSetMorphBaseImageFilter_hxx
1919
#define itkLabelSetMorphBaseImageFilter_hxx
2020

21-
#include "itkLabelSetMorphBaseImageFilter.h"
2221
#include "itkImageRegionConstIterator.h"
2322
#include "itkImageRegionIterator.h"
2423

0 commit comments

Comments
 (0)