diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-19 11:09:30 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-19 11:09:30 -0230 |
commit | 20c120a6bde681026a29c301c3a306eb6f1cbb59 (patch) | |
tree | 9757101fb6f6bac3a5600fc8831cabb4cc831b0c /cpp/src/Ice/Object.cpp | |
parent | Added support for SIGKILL/SIGTERM on Windows (bug 2258) (diff) | |
download | ice-20c120a6bde681026a29c301c3a306eb6f1cbb59.tar.bz2 ice-20c120a6bde681026a29c301c3a306eb6f1cbb59.tar.xz ice-20c120a6bde681026a29c301c3a306eb6f1cbb59.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2236 - Remove operator!= from Object and LocalObject
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 5295d6033ed..3b8d2a64b07 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -28,12 +28,6 @@ Ice::Object::operator==(const Object& r) const } bool -Ice::Object::operator!=(const Object& r) const -{ - return this != &r; -} - -bool Ice::Object::operator<(const Object& r) const { return this < &r; |