summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/OutputUtil.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-22 17:07:43 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-22 17:07:43 +0000
commitee9134f129672068403f488e9a326411ca9cc1b1 (patch)
tree5bd03a07398ed4ffd2fc8d929ab4a0ce97a843a1 /cpp/src/IceUtil/OutputUtil.cpp
parentfixes (diff)
downloadice-ee9134f129672068403f488e9a326411ca9cc1b1.tar.bz2
ice-ee9134f129672068403f488e9a326411ca9cc1b1.tar.xz
ice-ee9134f129672068403f488e9a326411ca9cc1b1.zip
removed several static's
Diffstat (limited to 'cpp/src/IceUtil/OutputUtil.cpp')
-rw-r--r--cpp/src/IceUtil/OutputUtil.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/OutputUtil.cpp b/cpp/src/IceUtil/OutputUtil.cpp
index b29ecd1a9be..8d41b73bc32 100644
--- a/cpp/src/IceUtil/OutputUtil.cpp
+++ b/cpp/src/IceUtil/OutputUtil.cpp
@@ -481,7 +481,7 @@ IceUtil::XMLOutput::escape(const string& input) const
// Find out whether there is a reserved character to avoid
// conversion if not necessary.
//
- static const string allReserved = "<>'\"&";
+ const string allReserved = "<>'\"&";
if(v.find_first_of(allReserved) != string::npos)
{
//
@@ -497,7 +497,7 @@ IceUtil::XMLOutput::escape(const string& input) const
//
// Next convert remaining reserved characters.
//
- static const string reserved = "<>'\"";
+ const string reserved = "<>'\"";
pos = 0;
while((pos = v.find_first_of(reserved, pos)) != string::npos)
{