From: regrain Date: Fri, 14 Mar 2003 09:19:48 +0000 (+0000) Subject: * src/gdcmUtils.cxx : redifinition of defaults parameters in code X-Git-Tag: April2003~14 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=bfd4beaf498ee2931f79aba70c72c2f9eeeb00f0;hp=cc3220637a45ce42ad1f9953031950e19c291779;p=gdcm.git * src/gdcmUtils.cxx : redifinition of defaults parameters in code -- BeNours --- diff --git a/ChangeLog b/ChangeLog index 0e2551ea..aa0f553a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2003-03-14 Benoit Regrain + * src/gdcmUtils.cxx : redifinition of defaults parameters in code + 2003-03-12 Eric Boix * gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not to exported to the environement (see gdcmPython/testSuite.py diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index ea90d950..127737e1 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -59,7 +59,7 @@ istream& eatwhite(istream& is) { void Tokenize (const string& str, vector& 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) {