diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-02-13 13:48:36 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-02-13 13:48:36 -0330 |
commit | 51454ae5a6219fb8e3a6464b35f545b620001279 (patch) | |
tree | 42ad16d4151a9ffb5f7675c5307c5e20f01cd159 /cpp/src/IceUtil/StringUtil.cpp | |
parent | Added deprecated warning to error outputs (diff) | |
download | ice-51454ae5a6219fb8e3a6464b35f545b620001279.tar.bz2 ice-51454ae5a6219fb8e3a6464b35f545b620001279.tar.xz ice-51454ae5a6219fb8e3a6464b35f545b620001279.zip |
Bug 2491 - Use getPropertyAsList
Diffstat (limited to 'cpp/src/IceUtil/StringUtil.cpp')
-rw-r--r-- | cpp/src/IceUtil/StringUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/StringUtil.cpp b/cpp/src/IceUtil/StringUtil.cpp index 54e1a1d6253..2d56cf06a93 100644 --- a/cpp/src/IceUtil/StringUtil.cpp +++ b/cpp/src/IceUtil/StringUtil.cpp @@ -370,7 +370,7 @@ IceUtilInternal::splitString(const string& str, const string& delim, vector<stri string IceUtilInternal::trim(const string& s) { - const string delim = " \t\r\n"; + static const string delim = " \t\r\n"; if(s.length() != 0) { string::size_type beg = s.find_first_not_of(delim); |