summaryrefslogtreecommitdiff
path: root/TAO/tao/IOR_LookupTable.cpp
diff options
context:
space:
mode:
authorvishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-01 05:31:52 +0000
committervishal <vishal@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-01 05:31:52 +0000
commited9c73edad915617ea6d5938e97a1c0704a19d9e (patch)
treec9680d2dca451197529f4aec9577242ad1f7c5f6 /TAO/tao/IOR_LookupTable.cpp
parent58b5106686e0884d0047a1dfec0d85b38d4f444b (diff)
downloadATCD-ed9c73edad915617ea6d5938e97a1c0704a19d9e.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/IOR_LookupTable.cpp')
-rw-r--r--TAO/tao/IOR_LookupTable.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/IOR_LookupTable.cpp b/TAO/tao/IOR_LookupTable.cpp
index c28aee0cc76..728dc0cfe0f 100644
--- a/TAO/tao/IOR_LookupTable.cpp
+++ b/TAO/tao/IOR_LookupTable.cpp
@@ -25,8 +25,8 @@ return 0;
}
int
-TAO_IOR_LookupTable::add_ior (ACE_CString object_name,
- ACE_CString ior)
+TAO_IOR_LookupTable::add_ior (ACE_CString &object_name,
+ ACE_CString &ior)
{
// Make an entry in the table.
switch (this->hash_map_.bind (object_name, ior))
@@ -42,15 +42,15 @@ TAO_IOR_LookupTable::add_ior (ACE_CString object_name,
}
ACE_DEBUG ((LM_DEBUG,
- "\n%s:%s Added to the table\n",
+ "\n%s:%s Added to the IOR table\n",
object_name.c_str (),
ior.c_str ()));
-
+
return 0;
}
int
-TAO_IOR_LookupTable::find_ior (ACE_CString object_name,
+TAO_IOR_LookupTable::find_ior (ACE_CString &object_name,
ACE_CString &ior)
{
// Find the IOR corresponding to the object name.