summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/CommunicatorAsync.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-11-05 10:51:56 -0400
committerBernard Normier <bernard@zeroc.com>2016-11-05 10:51:56 -0400
commita9207c4a7e8190cb64286afc1b373f16010d0feb (patch)
treeb6815a6debc9b9589145cc12f192b6dd83b3f49e /cpp/include/Ice/CommunicatorAsync.h
parentRevert "Reverted previous double-underscore changes in IceUtil classes" (diff)
downloadice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.bz2
ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.xz
ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.zip
Revert "Replaced double and triple underscores in C++ by ice-prefixed names"
This reverts commit 91fa99c34d1211d426b24bf68001fc27a87b3f00.
Diffstat (limited to 'cpp/include/Ice/CommunicatorAsync.h')
-rw-r--r--cpp/include/Ice/CommunicatorAsync.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/include/Ice/CommunicatorAsync.h b/cpp/include/Ice/CommunicatorAsync.h
index ea121dff6c5..549542567dd 100644
--- a/cpp/include/Ice/CommunicatorAsync.h
+++ b/cpp/include/Ice/CommunicatorAsync.h
@@ -33,18 +33,18 @@ public:
{
}
- virtual void completed(const ::Ice::AsyncResultPtr& iceResult) const
+ virtual void completed(const ::Ice::AsyncResultPtr& __result) const
{
- ::Ice::CommunicatorPtr iceCom = iceResult->getCommunicator();
- assert(iceCom);
+ ::Ice::CommunicatorPtr __com = __result->getCommunicator();
+ assert(__com);
try
{
- iceCom->end_flushBatchRequests(iceResult);
+ __com->end_flushBatchRequests(__result);
assert(false);
}
catch(const ::Ice::Exception& ex)
{
- ::IceInternal::CallbackNC<T>::exception(iceResult, ex);
+ ::IceInternal::CallbackNC<T>::exception(__result, ex);
}
}
};
@@ -81,18 +81,18 @@ public:
{
}
- virtual void completed(const ::Ice::AsyncResultPtr& iceResult) const
+ virtual void completed(const ::Ice::AsyncResultPtr& __result) const
{
- ::Ice::CommunicatorPtr iceCom = iceResult->getCommunicator();
- assert(iceCom);
+ ::Ice::CommunicatorPtr __com = __result->getCommunicator();
+ assert(__com);
try
{
- iceCom->end_flushBatchRequests(iceResult);
+ __com->end_flushBatchRequests(__result);
assert(false);
}
catch(const ::Ice::Exception& ex)
{
- ::IceInternal::Callback<T, CT>::exception(iceResult, ex);
+ ::IceInternal::Callback<T, CT>::exception(__result, ex);
}
}
};