diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-15 23:34:12 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-15 23:34:12 +0000 |
commit | 29c952df4f242f0f7efc0f575669852da93c6514 (patch) | |
tree | 84fa22f2244708b1ab49195e05669fd6ed0644de /ace/Hash_Map_Manager.h | |
parent | ebdd6a648f8b85b427ef34d942765a90c81e6c40 (diff) | |
download | ATCD-29c952df4f242f0f7efc0f575669852da93c6514.tar.gz |
.
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r-- | ace/Hash_Map_Manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h index 8b7d8caf592..41389837d0f 100644 --- a/ace/Hash_Map_Manager.h +++ b/ace/Hash_Map_Manager.h @@ -421,16 +421,16 @@ public: // = STL styled iteration, compare, and reference functions. ACE_Hash_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK> operator++ (void); - // Postfix advance. + // Prefix advance. ACE_Hash_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK>& operator++ (int); - // Prefix advance. + // Postfix advance. ACE_Hash_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK> operator-- (void); - // Postfix advance. + // Prefix advance. ACE_Hash_Map_Iterator<EXT_ID, INT_ID, ACE_LOCK>& operator-- (int); - // Prefix advance. + // Postfix advance. ACE_ALLOC_HOOK_DECLARE; // Declare the dynamic allocation hooks. |