]> Creatis software - gdcm.git/blobdiff - src/gdcmTS.cxx
ENH: Fix a shadow variable
[gdcm.git] / src / gdcmTS.cxx
index 4a8fffbdf4b5c8886130d28357b139885d0b33ad..0f41bb5c34c044727d834649e42cc579bbd7bf19 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmTS.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/06/22 13:47:33 $
-  Version:   $Revision: 1.20 $
+  Date:      $Date: 2004/07/19 15:16:19 $
+  Version:   $Revision: 1.23 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -35,7 +35,6 @@ gdcmTS::gdcmTS(void)
    std::ifstream from(filename.c_str());
    dbg.Error(!from, "gdcmTS::gdcmTS: can't open dictionary",filename.c_str());
 
-   //char buff[1024];  //not used
    std::string key;
    std::string name;
 
@@ -43,7 +42,7 @@ gdcmTS::gdcmTS(void)
       from >> key;
 
       eatwhite(from);
-      getline(from, name);    /// MEMORY LEAK
+      std::getline(from, name);    /// MEMORY LEAK
 
       if(key!="") 
       {
@@ -86,7 +85,7 @@ int gdcmTS::Count(TSKey key)
 std::string gdcmTS::GetValue(TSKey key) 
 {
    if (ts.count(key) == 0) 
-      return (GDCM_UNFOUND);
+      return GDCM_UNFOUND;
    return ts[key];
 }