summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/PropertiesI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/PropertiesI.cpp')
-rw-r--r--cpp/src/Ice/PropertiesI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/PropertiesI.cpp b/cpp/src/Ice/PropertiesI.cpp
index 2d5da7376fb..8273ad5598c 100644
--- a/cpp/src/Ice/PropertiesI.cpp
+++ b/cpp/src/Ice/PropertiesI.cpp
@@ -247,7 +247,7 @@ Ice::PropertiesI::PropertiesI(int& argc, char* argv[])
void
Ice::PropertiesI::parseLine(const string& line)
{
- static const string delim = " \t\r\n";
+ const string delim = " \t\r\n";
string s = line;
string::size_type idx = s.find('#');
@@ -310,7 +310,7 @@ Ice::PropertiesI::loadConfig()
if(!value.empty())
{
- static const string delim = " \t\r\n";
+ const string delim = " \t\r\n";
string::size_type beg = value.find_first_not_of(delim);
while(beg != string::npos)
{