diff options
author | Michi Henning <michi@zeroc.com> | 2003-08-27 05:11:36 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-08-27 05:11:36 +0000 |
commit | be6bd161add1567013b98afc4c8f5b17548c0094 (patch) | |
tree | df46c39d133581d120f323466d1914a6290fc1d2 /cpp | |
parent | Added per-proxy contexts. (diff) | |
download | ice-be6bd161add1567013b98afc4c8f5b17548c0094.tar.bz2 ice-be6bd161add1567013b98afc4c8f5b17548c0094.tar.xz ice-be6bd161add1567013b98afc4c8f5b17548c0094.zip |
Fixed incorrect return statement in two void functions.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index ba56ed55365..f43c82b2615 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -151,7 +151,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context& __context) void IceProxy::Ice::Object::ice_ping() { - return ice_ping(_reference->context); + ice_ping(_reference->context); } void @@ -310,7 +310,7 @@ IceProxy::Ice::Object::ice_invoke_async(const AMI_Object_ice_invokePtr& cb, OperationMode mode, const vector<Byte>& inParams) { - return ice_invoke_async(cb, operation, mode, inParams, _reference->context); + ice_invoke_async(cb, operation, mode, inParams, _reference->context); } void |