From 54ca9851b9e570d9b1553dcf5d567a18e6678e6c Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Fri, 17 Dec 2021 12:45:35 -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/itkProxTVImageFilter.hxx | 1 - 1 file changed, 1 deletion(-) diff --git a/include/itkProxTVImageFilter.hxx b/include/itkProxTVImageFilter.hxx index b37cb79..45c826e 100644 --- a/include/itkProxTVImageFilter.hxx +++ b/include/itkProxTVImageFilter.hxx @@ -18,7 +18,6 @@ #ifndef itkProxTVImageFilter_hxx #define itkProxTVImageFilter_hxx -#include "itkProxTVImageFilter.h" #include "itkImageRegionIterator.h" #include "itkImageRegionConstIterator.h"