summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/LocalObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/LocalObject.cpp')
-rw-r--r--cppe/src/IceE/LocalObject.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/cppe/src/IceE/LocalObject.cpp b/cppe/src/IceE/LocalObject.cpp
index caa268678aa..a8316be312d 100644
--- a/cppe/src/IceE/LocalObject.cpp
+++ b/cppe/src/IceE/LocalObject.cpp
@@ -10,32 +10,32 @@
#include <IceE/LocalObject.h>
using namespace std;
-using namespace IceE;
-using namespace IceEInternal;
+using namespace Ice;
+using namespace IceInternal;
-void IceEInternal::incRef(LocalObject* p) { p->__incRef(); }
-void IceEInternal::decRef(LocalObject* p) { p->__decRef(); }
+void IceInternal::incRef(LocalObject* p) { p->__incRef(); }
+void IceInternal::decRef(LocalObject* p) { p->__decRef(); }
bool
-IceE::LocalObject::operator==(const LocalObject& r) const
+Ice::LocalObject::operator==(const LocalObject& r) const
{
return this == &r;
}
bool
-IceE::LocalObject::operator!=(const LocalObject& r) const
+Ice::LocalObject::operator!=(const LocalObject& r) const
{
return this != &r;
}
bool
-IceE::LocalObject::operator<(const LocalObject& r) const
+Ice::LocalObject::operator<(const LocalObject& r) const
{
return this < &r;
}
Int
-IceE::LocalObject::ice_hash() const
+Ice::LocalObject::ice_hash() const
{
return static_cast<Int>(reinterpret_cast<Long>(this) >> 4);
}