summaryrefslogtreecommitdiff
path: root/TAO/tao/Object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Object.cpp')
-rw-r--r--TAO/tao/Object.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/TAO/tao/Object.cpp b/TAO/tao/Object.cpp
index 3b5b83c9c8d..0df3b311b58 100644
--- a/TAO/tao/Object.cpp
+++ b/TAO/tao/Object.cpp
@@ -32,7 +32,6 @@ ACE_RCSID (tao,
Object,
"$Id$")
-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
CORBA::Object::~Object (void)
@@ -148,7 +147,7 @@ void
CORBA::Object::_tao_any_destructor (void *x)
{
CORBA::Object_ptr tmp = static_cast<CORBA::Object_ptr> (x);
- CORBA::release (tmp);
+ ::CORBA::release (tmp);
}
// virtual -- do not inline
@@ -994,7 +993,7 @@ namespace TAO
void
Objref_Traits<CORBA::Object>::release (CORBA::Object_ptr p)
{
- CORBA::release (p);
+ ::CORBA::release (p);
}
CORBA::Object_ptr
@@ -1004,7 +1003,7 @@ namespace TAO
}
CORBA::Boolean
- Objref_Traits<CORBA::Object>::marshal (CORBA::Object_ptr p,
+ Objref_Traits<CORBA::Object>::marshal (const CORBA::Object_ptr p,
TAO_OutputCDR & cdr)
{
return p->marshal (cdr);