diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-06-04 11:07:46 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-06-04 11:07:46 +0200 |
commit | c1c2243e742ecd94bc0c634b14a93261170a24e3 (patch) | |
tree | ed2c11eb485f2716318b43959e7ea64197fe3cd7 /cpp/src/Ice/Proxy.cpp | |
parent | Fixed (ICE-5345) - IcePHP fails to build with GCC 4.7 (diff) | |
download | ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.tar.bz2 ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.tar.xz ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.zip |
Added __hash proxy method to get around deprecation messages when using ice_getHash, fixed identation
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 60801888810..143d0ce7e45 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -1229,6 +1229,12 @@ IceProxy::Ice::Object::end_ice_flushBatchRequests(const AsyncResultPtr& __result __result->__wait(); } +Int +IceProxy::Ice::Object::__hash() const +{ + return _reference->hash(); +} + void IceProxy::Ice::Object::__copyFrom(const ObjectPrx& from) { |