]> Creatis software - gdcm.git/commitdiff
Add comment
authorjpr <jpr>
Tue, 6 Sep 2005 17:15:25 +0000 (17:15 +0000)
committerjpr <jpr>
Tue, 6 Sep 2005 17:15:25 +0000 (17:15 +0000)
src/gdcmSQItem.cxx

index fe331d2b6bed66fefafb9f34c7967f399b0f0ff5..88c93b3ad21c7021b5c4dac7a2201488e63f54b1 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmSQItem.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/07/12 17:08:12 $
-  Version:   $Revision: 1.74 $
+  Date:      $Date: 2005/09/06 17:15:25 $
+  Version:   $Revision: 1.75 $
   
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -85,7 +85,9 @@ void SQItem::WriteContent(std::ofstream *fp, FileType filetype)
       // we just *always* ignore spurious fffe|0000 tag ! 
       if ( (*it)->GetGroup() == 0xfffe && (*it)->GetElement() == 0x0000 )
       {
-         break; // FIXME : continue; ?!?
+          break; // FIXME : break or continue; ?!?  
+                 // --> makes no difference since the only bugged file we have
+                 // contains 'impossible tag' fffe|0000 in last position !                            
       }
 
       (*it)->WriteContent(fp, filetype);