diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-01-25 02:36:14 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-01-25 02:36:14 +0000 |
commit | a706a432c7de0e90c6f758fd9ba2ed518faf0b33 (patch) | |
tree | 3146c9c9876c9a38d2870c3d739f342944a2d211 /ace/Map_Manager.cpp | |
parent | a4b9ac590640406e6041ccfbd4beb734d2a28b69 (diff) | |
download | ATCD-a706a432c7de0e90c6f758fd9ba2ed518faf0b33.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Map_Manager.cpp')
-rw-r--r-- | ace/Map_Manager.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Map_Manager.cpp b/ace/Map_Manager.cpp index 75a5e78199b..4ff94017a0b 100644 --- a/ace/Map_Manager.cpp +++ b/ace/Map_Manager.cpp @@ -29,7 +29,7 @@ ACE_ALLOC_HOOK_DEFINE(ACE_Map_Iterator) ACE_ALLOC_HOOK_DEFINE(ACE_Map_Reverse_Iterator) -template <class EXT_ID, class INT_ID, class ACE_LOCK> int + template <class EXT_ID, class INT_ID, class ACE_LOCK> int ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::open (size_t size, ACE_Allocator *alloc) { @@ -343,8 +343,8 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::find_i (const EXT_ID &ext_id, } template <class EXT_ID, class INT_ID, class ACE_LOCK> int -ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::unbind_i (const EXT_ID &ext_id, - size_t &index) +ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::unbind_and_return_index (const EXT_ID &ext_id, + size_t &index) { // Try to find the key. int result = this->find_and_return_index (ext_id, @@ -368,8 +368,8 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::unbind_i (const EXT_ID &ext_id, { // Unbind the entry. size_t index = 0; - int result = this->unbind_i (ext_id, - index); + int result = this->unbind_and_return_index (ext_id, + index); if (result == 0) { |