]> Creatis software - gdcm.git/blobdiff - src/gdcmDictSet.cxx
*FIX: sorry !
[gdcm.git] / src / gdcmDictSet.cxx
index e2c5c909a153fea2868c32700954382ac766e370..99b890200da1d523d2590459992389715e78b44b 100644 (file)
@@ -1,20 +1,9 @@
 // gdcmDictEntry
 
-#ifdef _MSC_VER
-//'identifier' : decorated name length exceeded, name was truncated
-//#pragma warning ( disable : 4503 )
-// 'identifier' : class 'type' needs to have dll-interface to be used by
-// clients of class 'type2'
-#pragma warning ( disable : 4251 )
-// 'identifier' : identifier was truncated to 'number' characters in the
-// debug information
-#pragma warning ( disable : 4786 )
-#endif //_MSC_VER
-
+#include "gdcmDictSet.h"
+#include "gdcmUtil.h"
 #include <fstream>
 #include <stdlib.h>  // For getenv
-#include "gdcmUtil.h"
-#include "gdcmDictSet.h"
 
 #define PUB_DICT_NAME     "DicomV3Dict"
 #ifndef PUB_DICT_PATH
@@ -137,7 +126,7 @@ void gdcmDictSet::LoadDictFromFile(std::string FileName, DictKey Name) {
  */
 void gdcmDictSet::Print(std::ostream& os) {
    for (DictSetHT::iterator dict = Dicts.begin(); dict != Dicts.end(); ++dict){
-      std::os << "Printing dictionary " << dict->first << std::endl;
+      os << "Printing dictionary " << dict->first << std::endl;
       dict->second->Print(os);
    }
 }