]> Creatis software - gdcm.git/commitdiff
* src/gdcmUtils.cxx : redifinition of defaults parameters in code
authorregrain <regrain>
Fri, 14 Mar 2003 09:19:48 +0000 (09:19 +0000)
committerregrain <regrain>
Fri, 14 Mar 2003 09:19:48 +0000 (09:19 +0000)
      -- BeNours

ChangeLog
src/gdcmUtil.cxx

index 0e2551eaffaa9b8e4f7bac674baf9cf156ddfcac..aa0f553a3233c83807166b381cf8fa3a90819743 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2003-03-14 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
+      * src/gdcmUtils.cxx : redifinition of defaults parameters in code
+
 2003-03-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
       * gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not
         to exported to the environement (see gdcmPython/testSuite.py
index ea90d950231603531bb53703f7c677c8a98f6acc..127737e1d95a7773f62577eccbae3f5f3ebea1c7 100644 (file)
@@ -59,7 +59,7 @@ istream& eatwhite(istream& is) {
 
 void Tokenize (const string& str,
                vector<string>& tokens,
-               const string& delimiters = " ") {
+               const string& delimiters) {
    string::size_type lastPos = str.find_first_not_of(delimiters,0);
    string::size_type pos     = str.find_first_of(delimiters,lastPos);
    while (string::npos != pos || string::npos != lastPos) {