diff options
author | Michi Henning <michi@zeroc.com> | 2004-05-13 23:46:29 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-05-13 23:46:29 +0000 |
commit | 9a893aa83cdaa3dcb31d5fe9a1f61301e65cc919 (patch) | |
tree | 4cc0398c897d3e8cd725967a2a5d21d38b8af60d /cpp | |
parent | Freeze fixes (diff) | |
download | ice-9a893aa83cdaa3dcb31d5fe9a1f61301e65cc919.tar.bz2 ice-9a893aa83cdaa3dcb31d5fe9a1f61301e65cc919.tar.xz ice-9a893aa83cdaa3dcb31d5fe9a1f61301e65cc919.zip |
Changed return value of ice_getFacet() to const string&.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/Ice/Proxy.h | 2 | ||||
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/Ice/Proxy.h b/cpp/include/Ice/Proxy.h index 5aef7898f4a..e54e973f5e1 100644 --- a/cpp/include/Ice/Proxy.h +++ b/cpp/include/Ice/Proxy.h @@ -105,7 +105,7 @@ public: ::Ice::Context ice_getContext() const; ::Ice::ObjectPrx ice_newContext(const ::Ice::Context&) const; - ::std::string ice_getFacet() const; + const ::std::string& ice_getFacet() const; ::Ice::ObjectPrx ice_newFacet(const ::std::string&) const; ::Ice::ObjectPrx ice_twoway() const; diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 24c515308ef..c147ec9e250 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -316,7 +316,7 @@ IceProxy::Ice::Object::ice_newIdentity(const Identity& newIdentity) const } } -string +const string& IceProxy::Ice::Object::ice_getFacet() const { return _reference->facet; |