diff options
author | Jose <jose@zeroc.com> | 2015-12-22 22:34:36 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-22 22:34:36 +0100 |
commit | 27d7d8f432d73318e30dd4fe3395ec19cd18edea (patch) | |
tree | d796c6d56df6aebc40aac4513984e6072a6d61e6 /cpp/src/Ice/EndpointI.h | |
parent | Fixed C++98 to get rid of Ice::Context pointers now that we use Ice::noExplic... (diff) | |
download | ice-27d7d8f432d73318e30dd4fe3395ec19cd18edea.tar.bz2 ice-27d7d8f432d73318e30dd4fe3395ec19cd18edea.tar.xz ice-27d7d8f432d73318e30dd4fe3395ec19cd18edea.zip |
C++11 metrics fixes
Diffstat (limited to 'cpp/src/Ice/EndpointI.h')
-rw-r--r-- | cpp/src/Ice/EndpointI.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/Ice/EndpointI.h b/cpp/src/Ice/EndpointI.h index 2b48fb4e1ad..1fb691ddd12 100644 --- a/cpp/src/Ice/EndpointI.h +++ b/cpp/src/Ice/EndpointI.h @@ -132,10 +132,7 @@ public: // // Compare endpoints for sorting purposes. // -#ifdef ICE_CPP11_MAPPING - virtual bool operator==(const Endpoint&) const = 0; - virtual bool operator<(const Endpoint&) const = 0; -#else +#ifndef ICE_CPP11_MAPPING virtual bool operator==(const Ice::LocalObject&) const = 0; virtual bool operator<(const Ice::LocalObject&) const = 0; #endif |