]> Creatis software - gdcm.git/blobdiff - src/gdcmUtil.cxx
Remove complex style install stuff, was never used
[gdcm.git] / src / gdcmUtil.cxx
index c2e169ddb1563bb2f5fcb9288b6ff0c38340e395..c6a9d0365d3f24bd109a49ed64acd5da43632638 100644 (file)
@@ -5,6 +5,7 @@
 #include <stdio.h>
 #include <ctype.h>   // For isspace
 #include <string.h>  // CLEANME: could this be only string ? Related to Win32 ?
+#include <iostream>
 
 /**
  * \ingroup Globals
@@ -46,7 +47,7 @@ void Tokenize (const std::string& str,
 std::string CreateCleanString(std::string s) {
    std::string str=s;
 
-   for(int i=0;i<str.size();i++)
+   for(unsigned int i=0;i<str.size();i++)
    {
       if(!isprint(str[i]))
          str[i]='.';