]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.cxx
* oops forgot to commit Changelog :)
[gdcm.git] / src / gdcmUtil.cxx
index 5cb02ac3ebb4f96ad0e092b8974388ed7e4ad1f7..ec86bb6ea74d7ef3ca874d6b254db6cb6118f6ab 100644 (file)
@@ -1,4 +1,14 @@
-// $Header: /cvs/public/gdcm/src/gdcmUtil.cxx,v 1.15 2003/07/01 15:48:27 jpr Exp $
+// $Header: /cvs/public/gdcm/src/gdcmUtil.cxx,v 1.17 2003/09/19 15:36:05 malaterre Exp $
+
+//This is needed when compiling in debug mode
+#ifdef _MSC_VER
+// '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 <stdio.h>
 #include <ctype.h>   // For isspace
@@ -129,7 +139,7 @@ char * _cleanString(char *v) {
 ///////////////////////////////////////////////////////////////////////////
 // to prevent a flashing screen when non-printable character
 
-char * _CreateCleanString(string s) {
+/*char * _CreateCleanString(string s) {
    char *d, *di, *v;
    int i, l;
    v=(char*)s.c_str();
@@ -142,7 +152,7 @@ char * _CreateCleanString(string s) {
          *di = '.';
       }        
    return d;
-}
+}*/
 
 ///////////////////////////////////////////////////////////////////////////
 //