diff options
author | Jose <jose@zeroc.com> | 2016-02-29 15:56:29 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-02-29 15:56:29 +0100 |
commit | 05f2548dc1b12b4b5afd3406af3bd899c17f85be (patch) | |
tree | 0bc0ae4845afa929e74f2f1fcb9ee20057b3240f /cpp/src/Ice/Reference.cpp | |
parent | ICE-6843 - Check for php-config in the path (diff) | |
download | ice-05f2548dc1b12b4b5afd3406af3bd899c17f85be.tar.bz2 ice-05f2548dc1b12b4b5afd3406af3bd899c17f85be.tar.xz ice-05f2548dc1b12b4b5afd3406af3bd899c17f85be.zip |
ICE-6952 - identityToString/stringToIdentity non member functions
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index c461535c33e..5425b17c372 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -233,7 +233,7 @@ IceInternal::Reference::toString() const // the reference parser uses as separators, then we enclose // the identity string in quotes. // - string id = _instance->identityToString(_identity); + string id = Ice::identityToString(_identity); if(id.find_first_of(" :@") != string::npos) { s << '"' << id << '"'; |