summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Thread.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-08-03 14:08:32 -0400
committerBernard Normier <bernard@zeroc.com>2016-08-03 14:08:32 -0400
commitc36d0acbeb23017705a7096dcf97e688c8ec62be (patch)
tree0668919d27c5fdb8c4a4dd9e8e23c99262145990 /cpp/src/Ice/Thread.cpp
parentAdded missing <iterator> (diff)
downloadice-c36d0acbeb23017705a7096dcf97e688c8ec62be.tar.bz2
ice-c36d0acbeb23017705a7096dcf97e688c8ec62be.tar.xz
ice-c36d0acbeb23017705a7096dcf97e688c8ec62be.zip
Fixed C++11 relational operators on ObjectPrx
Removed many useless operator!=
Diffstat (limited to 'cpp/src/Ice/Thread.cpp')
-rw-r--r--cpp/src/Ice/Thread.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/cpp/src/Ice/Thread.cpp b/cpp/src/Ice/Thread.cpp
index 12c5fc1738c..7882a0a2948 100644
--- a/cpp/src/Ice/Thread.cpp
+++ b/cpp/src/Ice/Thread.cpp
@@ -238,12 +238,6 @@ IceUtil::Thread::operator==(const Thread& rhs) const
}
bool
-IceUtil::Thread::operator!=(const Thread& rhs) const
-{
- return this != &rhs;
-}
-
-bool
IceUtil::Thread::operator<(const Thread& rhs) const
{
return this < &rhs;
@@ -503,12 +497,6 @@ IceUtil::Thread::operator==(const Thread& rhs) const
}
bool
-IceUtil::Thread::operator!=(const Thread& rhs) const
-{
- return this != &rhs;
-}
-
-bool
IceUtil::Thread::operator<(const Thread& rhs) const
{
return this < &rhs;
@@ -790,12 +778,6 @@ IceUtil::Thread::operator==(const Thread& rhs) const
}
bool
-IceUtil::Thread::operator!=(const Thread& rhs) const
-{
- return this != &rhs;
-}
-
-bool
IceUtil::Thread::operator<(const Thread& rhs) const
{
return this < &rhs;