diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-09 09:15:15 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-09 09:15:15 +0000 |
commit | dbf5e25145c929961c8608f2cf5cc9194586f377 (patch) | |
tree | ce73734961c8345b486f105fd93ae4e84f43256a /ace/Hash_Map_Manager.h | |
parent | 85ec47ce1a85648007f6ac11ccbd956b561ef64c (diff) | |
download | ATCD-dbf5e25145c929961c8608f2cf5cc9194586f377.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r-- | ace/Hash_Map_Manager.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h index 3a197cf1482..3800b241b0f 100644 --- a/ace/Hash_Map_Manager.h +++ b/ace/Hash_Map_Manager.h @@ -99,10 +99,9 @@ public: INT_ID &int_id); // Associate <ext_id> with <int_id> if and only if <ext_id> is not // in the map. If <ext_id> is already in the map then the <int_id> - // parameter is overwritten with the existing value in the map - // Returns 0 if a new entry is bound successfully, returns 1 if an - // attempt is made to bind an existing entry, and returns -1 if - // failures occur. + // parameter is assigned the existing value in the map. Returns 0 + // if a new entry is bound successfully, returns 1 if an attempt is + // made to bind an existing entry, and returns -1 if failures occur. int bind (const EXT_ID &item, const INT_ID &int_id); @@ -127,7 +126,7 @@ public: int find (const EXT_ID &item, INT_ID &int_id); // Locate <ext_id> and pass out parameter via <int_id>. If found, - // return 0, returns -1 if failure occurs. + // return 0, returns -1 if not found. int find (const EXT_ID &ext_id); // Returns 0 if the <ext_id> is in the mapping, otherwise -1. |