diff options
Diffstat (limited to 'cppe/src/IceE/Object.cpp')
-rw-r--r-- | cppe/src/IceE/Object.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/cppe/src/IceE/Object.cpp b/cppe/src/IceE/Object.cpp index 55559111b38..c350090f6f4 100644 --- a/cppe/src/IceE/Object.cpp +++ b/cppe/src/IceE/Object.cpp @@ -16,8 +16,7 @@ using namespace std; using namespace Ice; using namespace IceInternal; -void IceInternal::incRef(Object* p) { p->__incRef(); } -void IceInternal::decRef(Object* p) { p->__decRef(); } +IceUtil::Shared* IceInternal::upCast(Object* p) { return p; } bool Ice::Object::operator==(const Object& r) const @@ -26,12 +25,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; |