summaryrefslogtreecommitdiff
path: root/ACE/ace/Hash_Map_Manager_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-03-25 09:09:11 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-03-25 09:09:11 +0000
commita558a3c7c307fc1502d221d811d1fc1915354c61 (patch)
treed25e743a49b8b9273aeb91ac2467a2520ce944c2 /ACE/ace/Hash_Map_Manager_T.h
parent0a3ddca7ebcd0ee91fa76b94b2f93424989bbf09 (diff)
downloadATCD-a558a3c7c307fc1502d221d811d1fc1915354c61.tar.gz
Tue Mar 25 09:08:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Hash_Map_Manager_T.h')
-rw-r--r--ACE/ace/Hash_Map_Manager_T.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Hash_Map_Manager_T.h b/ACE/ace/Hash_Map_Manager_T.h
index 7d4f270584f..b8f06291e86 100644
--- a/ACE/ace/Hash_Map_Manager_T.h
+++ b/ACE/ace/Hash_Map_Manager_T.h
@@ -699,10 +699,10 @@ public:
typedef typename container_type::difference_type difference_type;
// = Initialization method.
- /// Contructor. If head != 0, the iterator constructed is positioned
+ /// Contructor. If head the iterator constructed is positioned
/// at the head of the map, it is positioned at the end otherwise.
ACE_Hash_Map_Const_Iterator_Base_Ex (const ACE_Hash_Map_Manager_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> &mm,
- int head);
+ bool head);
// = ITERATION methods.
@@ -996,7 +996,7 @@ public:
// = Initialization method.
ACE_Hash_Map_Reverse_Iterator_Ex (ACE_Hash_Map_Manager_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> &mm,
- int head = 0);
+ bool head = false);
// = Iteration methods.
/// Move forward by one element in the set. Returns 0 when all the
@@ -1053,7 +1053,7 @@ public:
// = Initialization method.
ACE_Hash_Map_Const_Reverse_Iterator_Ex (const ACE_Hash_Map_Manager_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> &mm,
- int head = 0);
+ bool head = false);
// = Iteration methods.
/// Move forward by one element in the set. Returns 0 when all the
@@ -1246,7 +1246,7 @@ public:
// = Initialization method.
ACE_Hash_Map_Reverse_Iterator (ACE_Hash_Map_Manager<EXT_ID, INT_ID, ACE_LOCK> &mm,
- int head = 0);
+ bool head = false);
/// Construct from base
ACE_Hash_Map_Reverse_Iterator (const ACE_Hash_Map_Reverse_Iterator_Ex<EXT_ID, INT_ID, ACE_Hash<EXT_ID>, ACE_Equal_To<EXT_ID>, ACE_LOCK> &base);