summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/IncomingAsync.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-03-05 15:20:12 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-03-05 15:20:12 +0100
commit279cc589ece5abaeb735974e799c809227e0aa83 (patch)
tree186204caab0ce3d9cf39a5f09736e6b750e95b67 /cpp/src/Ice/IncomingAsync.cpp
parentFixed copy/paste error for reading replica cert CN property (diff)
downloadice-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.cpp4
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)
{