From a95bd6530ceb6a07e2b156387345374cfb364589 Mon Sep 17 00:00:00 2001 From: Vivien Delmon Date: Wed, 16 Nov 2011 10:26:29 +0100 Subject: [PATCH] BUG with gcc 4.1.2 unnecessary typename - remove unnecessary typename --- common/clitkDicomRT_StructureSet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/clitkDicomRT_StructureSet.h b/common/clitkDicomRT_StructureSet.h index 5e4cf97..d1cc37c 100644 --- a/common/clitkDicomRT_StructureSet.h +++ b/common/clitkDicomRT_StructureSet.h @@ -44,8 +44,8 @@ public: typedef itk::SmartPointer Pointer; itkNewMacro(Self); - typedef typename std::map::iterator ROIIteratorType; - typedef typename std::map::const_iterator ROIConstIteratorType; + typedef std::map::iterator ROIIteratorType; + typedef std::map::const_iterator ROIConstIteratorType; void Print(std::ostream & os = std::cout) const; void Read(const std::string & filename); -- 2.47.1