From 96bf689cfa0d75bb11c4ee4a6c627c2c0ccc03c7 Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Fri, 17 Dec 2021 12:28:59 -0600 Subject: [PATCH] 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). --- include/itkStripTsImageFilter.hxx | 1 - 1 file changed, 1 deletion(-) diff --git a/include/itkStripTsImageFilter.hxx b/include/itkStripTsImageFilter.hxx index acb6199..9076335 100644 --- a/include/itkStripTsImageFilter.hxx +++ b/include/itkStripTsImageFilter.hxx @@ -20,7 +20,6 @@ #ifndef itkStripTsImageFilter_hxx #define itkStripTsImageFilter_hxx -#include "itkStripTsImageFilter.h" #include "itkLabelImageGaussianInterpolateImageFunction.h" namespace itk