diff options
author | Jose <jose@zeroc.com> | 2016-02-29 21:26:46 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-02-29 21:26:46 +0100 |
commit | c1883eb6776a6eacd1cdcfc8d1e5a4f5396105f2 (patch) | |
tree | 1ea84098d666eeac752193be52e5f34b360c3bd7 /cpp/src/Ice/Reference.cpp | |
parent | Merge remote-tracking branch 'origin/3.6' (diff) | |
download | ice-c1883eb6776a6eacd1cdcfc8d1e5a4f5396105f2.tar.bz2 ice-c1883eb6776a6eacd1cdcfc8d1e5a4f5396105f2.tar.xz ice-c1883eb6776a6eacd1cdcfc8d1e5a4f5396105f2.zip |
Ice::identityToString & Ice::stringToIdentity usage
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 8cd9c704970..394c32e95bd 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -236,7 +236,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 << '"'; |