]> Creatis software - clitk.git/commitdiff
BUG with gcc 4.1.2 unnecessary typename
authorVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Wed, 16 Nov 2011 09:26:29 +0000 (10:26 +0100)
committerVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Wed, 16 Nov 2011 09:26:29 +0000 (10:26 +0100)
- remove unnecessary typename

common/clitkDicomRT_StructureSet.h

index 5e4cf972d0a158284d4d5e721865bb0bef5eb016..d1cc37c2364b3451f9ad0b495b9de409a80c3425 100644 (file)
@@ -44,8 +44,8 @@ public:
   typedef itk::SmartPointer<Self> Pointer;
   itkNewMacro(Self);
 
-  typedef typename std::map<int, clitk::DicomRT_ROI::Pointer>::iterator ROIIteratorType;
-  typedef typename std::map<int, clitk::DicomRT_ROI::Pointer>::const_iterator ROIConstIteratorType;
+  typedef std::map<int, clitk::DicomRT_ROI::Pointer>::iterator ROIIteratorType;
+  typedef std::map<int, clitk::DicomRT_ROI::Pointer>::const_iterator ROIConstIteratorType;
 
   void Print(std::ostream & os = std::cout) const;
   void Read(const std::string & filename);