From 97698cb79e9cdb5d6ae1dfdf4bb436334619a9e1 Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@c-s.fr> Date: Wed, 10 Sep 2008 16:00:49 +0000 Subject: [PATCH] STYLE: Renaming double declared FunctorNew. --- .../Common/otbUnaryFunctorNeighborhoodImageFilter.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Testing/Code/Common/otbUnaryFunctorNeighborhoodImageFilter.cxx b/Testing/Code/Common/otbUnaryFunctorNeighborhoodImageFilter.cxx index 2aba92e435..0004555d56 100644 --- a/Testing/Code/Common/otbUnaryFunctorNeighborhoodImageFilter.cxx +++ b/Testing/Code/Common/otbUnaryFunctorNeighborhoodImageFilter.cxx @@ -26,11 +26,11 @@ namespace Functor { template <class TIter, class TOutput> - class UnaryFunctorNeighborhoodImageFilterFunctorNewTest + class UnaryFunctorNeighborhoodImageFilterTest { public: - UnaryFunctorNeighborhoodImageFilterFunctorNewTest() {}; - ~UnaryFunctorNeighborhoodImageFilterFunctorNewTest() {}; + UnaryFunctorNeighborhoodImageFilterTest() {}; + ~UnaryFunctorNeighborhoodImageFilterTest() {}; inline TOutput operator() (const TIter & it) { @@ -54,7 +54,7 @@ int otbUnaryFunctorNeighborhoodImageFilter(int argc, char * argv[]) typedef otb::ImageFileWriter<ImageType> WriterType; typedef itk::ConstNeighborhoodIterator<ImageType> IterType;; - typedef Functor::UnaryFunctorNeighborhoodImageFilterFunctorNewTest<IterType, PixelType> FunctorType; + typedef Functor::UnaryFunctorNeighborhoodImageFilterTest<IterType, PixelType> FunctorType; typedef otb::UnaryFunctorNeighborhoodImageFilter<ImageType, ImageType, FunctorType> UnaryFunctorNeighborhoodImageFilterType; // Instantiating object -- GitLab