diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-03-05 15:20:12 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-03-05 15:20:12 +0100 |
commit | 279cc589ece5abaeb735974e799c809227e0aa83 (patch) | |
tree | 186204caab0ce3d9cf39a5f09736e6b750e95b67 /cpp/src/Ice/IncomingAsync.cpp | |
parent | Fixed copy/paste error for reading replica cert CN property (diff) | |
download | ice-279cc589ece5abaeb735974e799c809227e0aa83.tar.bz2 ice-279cc589ece5abaeb735974e799c809227e0aa83.tar.xz ice-279cc589ece5abaeb735974e799c809227e0aa83.zip |
ICE-4793 - Fixes to prevent GCC shadow warnings and other minor fixes
Diffstat (limited to 'cpp/src/Ice/IncomingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/IncomingAsync.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/IncomingAsync.cpp b/cpp/src/Ice/IncomingAsync.cpp index 91c0580e2fb..38df435abe1 100644 --- a/cpp/src/Ice/IncomingAsync.cpp +++ b/cpp/src/Ice/IncomingAsync.cpp @@ -312,7 +312,7 @@ IceAsync::Ice::AMD_Object_ice_invoke::ice_response(bool ok, const vector<Byte>& { try { - __os()->writeBlob(outParams); + __getOs()->writeBlob(outParams); } catch(const LocalException& ex) { @@ -330,7 +330,7 @@ IceAsync::Ice::AMD_Object_ice_invoke::ice_response(bool ok, const pair<const Byt { try { - __os()->writeBlob(outParams.first, static_cast<Int>(outParams.second - outParams.first)); + __getOs()->writeBlob(outParams.first, static_cast<Int>(outParams.second - outParams.first)); } catch(const LocalException& ex) { |