diff options
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r-- | ace/Hash_Map_Manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h index 0284a8c3ddb..2879a0ab941 100644 --- a/ace/Hash_Map_Manager.h +++ b/ace/Hash_Map_Manager.h @@ -79,14 +79,14 @@ public: // = Initialization and termination methods. ACE_Hash_Map_Manager (size_t size, - ACE_Allocator *allocator = 0); + ACE_Allocator *alloc = 0); // Initialize a <Hash_Map_Manager> with size <length>. - ACE_Hash_Map_Manager (ACE_Allocator *allocator = 0); + ACE_Hash_Map_Manager (ACE_Allocator *alloc = 0); // Initialize a <Hash_Map_Manager> with default size. int open (size_t length = ACE_DEFAULT_MAP_SIZE, - ACE_Allocator *allocator = 0); + ACE_Allocator *alloc = 0); // Initialize a <Hash_Map_Manager> with size <length>. int close (void); |