diff options
author | Jose <jose@zeroc.com> | 2015-12-21 21:25:35 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-21 21:25:35 +0100 |
commit | e10648014880b39370c9abd9920ca8f61a93dfee (patch) | |
tree | 45fc795bce2470ec0131dbaad2660e8ccece80f7 /cpp/src/Ice/EndpointI.h | |
parent | Add async metadata note to CHANGELOG-3.7.md (diff) | |
download | ice-e10648014880b39370c9abd9920ca8f61a93dfee.tar.bz2 ice-e10648014880b39370c9abd9920ca8f61a93dfee.tar.xz ice-e10648014880b39370c9abd9920ca8f61a93dfee.zip |
C++11 cpp:comparable for local classes
Diffstat (limited to 'cpp/src/Ice/EndpointI.h')
-rw-r--r-- | cpp/src/Ice/EndpointI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/EndpointI.h b/cpp/src/Ice/EndpointI.h index ced48f600e5..edd3784608b 100644 --- a/cpp/src/Ice/EndpointI.h +++ b/cpp/src/Ice/EndpointI.h @@ -134,8 +134,8 @@ public: // Compare endpoints for sorting purposes. // #ifdef ICE_CPP11_MAPPING - virtual bool operator==(const EndpointI&) const = 0; - virtual bool operator<(const EndpointI&) const = 0; + virtual bool operator==(const Endpoint&) const = 0; + virtual bool operator<(const Endpoint&) const = 0; #else virtual bool operator==(const Ice::LocalObject&) const = 0; virtual bool operator<(const Ice::LocalObject&) const = 0; |