From 838539aff5bf3f37f4d9a6f33713824e98fa3db3 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sat, 12 Nov 2016 18:25:33 -0500 Subject: Replaced non-public double underscores in C++ --- cpp/include/Ice/ConnectionAsync.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'cpp/include/Ice/ConnectionAsync.h') diff --git a/cpp/include/Ice/ConnectionAsync.h b/cpp/include/Ice/ConnectionAsync.h index ce9fd85e7af..bc3f6064525 100644 --- a/cpp/include/Ice/ConnectionAsync.h +++ b/cpp/include/Ice/ConnectionAsync.h @@ -34,18 +34,18 @@ public: { } - virtual void completed(const ::Ice::AsyncResultPtr& __result) const + virtual void completed(const ::Ice::AsyncResultPtr& result) const { - ::Ice::ConnectionPtr __con = __result->getConnection(); - assert(__con); + ::Ice::ConnectionPtr connection = result->getConnection(); + assert(connection); try { - __con->end_flushBatchRequests(__result); + connection->end_flushBatchRequests(result); assert(false); } catch(const ::Ice::Exception& ex) { - ::IceInternal::CallbackNC::exception(__result, ex); + ::IceInternal::CallbackNC::exception(result, ex); } } }; @@ -81,18 +81,18 @@ public: { } - virtual void completed(const ::Ice::AsyncResultPtr& __result) const + virtual void completed(const ::Ice::AsyncResultPtr& result) const { - ::Ice::ConnectionPtr __con = __result->getConnection(); - assert(__con); + ::Ice::ConnectionPtr connection = result->getConnection(); + assert(connection); try { - __con->end_flushBatchRequests(__result); + connection->end_flushBatchRequests(result); assert(false); } catch(const ::Ice::Exception& ex) { - ::IceInternal::Callback::exception(__result, ex); + ::IceInternal::Callback::exception(result, ex); } } }; -- cgit v1.2.3