summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index a31d4022abb..5555d4214a1 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -50,18 +50,23 @@ const string ice_flushBatchRequests_name = "ice_flushBatchRequests";
#ifdef ICE_CPP11_MAPPING // C++11 mapping
+namespace Ice
+{
+
bool
-Ice::operator<(const ObjectPrx& lhs, const ObjectPrx& rhs)
+operator<(const ObjectPrx& lhs, const ObjectPrx& rhs)
{
return lhs._reference < rhs._reference;
}
bool
-Ice::operator==(const ObjectPrx& lhs, const ObjectPrx& rhs)
+operator==(const ObjectPrx& lhs, const ObjectPrx& rhs)
{
return lhs._reference == rhs._reference;
}
+}
+
void
Ice::ObjectPrx::__ice_isA(const shared_ptr<IceInternal::OutgoingAsyncT<bool>>& outAsync,
const string& typeId,