From: Vivien Delmon Date: Wed, 16 Nov 2011 09:26:29 +0000 (+0100) Subject: BUG with gcc 4.1.2 unnecessary typename X-Git-Tag: v1.3.0~171 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=a95bd6530ceb6a07e2b156387345374cfb364589;p=clitk.git BUG with gcc 4.1.2 unnecessary typename - remove unnecessary typename --- 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);