summaryrefslogtreecommitdiff
path: root/TAO/tao/Object_Ref_Table.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-06-02 07:38:06 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-06-02 07:38:06 +0000
commit2f07894e38530ebc50073fc738c6f38f428cb9d4 (patch)
tree5d66542032fa0d8a6e6477f5044d305055fced07 /TAO/tao/Object_Ref_Table.cpp
parent26aef7fbb583ca26865956ce365312e536ea4997 (diff)
downloadATCD-2f07894e38530ebc50073fc738c6f38f428cb9d4.tar.gz
ChangeLogTag:Wed Jun 2 00:37:17 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Object_Ref_Table.cpp')
-rw-r--r--TAO/tao/Object_Ref_Table.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Object_Ref_Table.cpp b/TAO/tao/Object_Ref_Table.cpp
index 4f9e8c8565e..aea28df830c 100644
--- a/TAO/tao/Object_Ref_Table.cpp
+++ b/TAO/tao/Object_Ref_Table.cpp
@@ -84,7 +84,7 @@ TAO_Object_Ref_Table::destroy (void)
++i)
{
// Deallocate the id.
- CORBA::string_free (ACE_const_cast (char *, (*i).ext_id_));
+ CORBA::string_free (const_cast<char *> ((*i).ext_id_));
// Release the Object.
CORBA::release ((*i).int_id_);
@@ -161,7 +161,7 @@ TAO_Object_Ref_Table::unbind (const char *id)
// Deallocate the external ID and obtain the ORB core pointer
// before unbinding the entry since the entry is deallocated
// during the call to unbind().
- CORBA::string_free (ACE_const_cast (char *, entry->ext_id_));
+ CORBA::string_free (const_cast<char *> (entry->ext_id_));
CORBA::Object_ptr obj = entry->int_id_;
result = this->table_.unbind (entry);