summaryrefslogtreecommitdiff
path: root/ace/Hash_Map_Manager.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-05 19:03:12 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-05 19:03:12 +0000
commit805ca90b6c6247cff3d2855875eb8854f82007fb (patch)
treeaba1d7db0298a65d82407de8864d67c57750a372 /ace/Hash_Map_Manager.h
parent72bd8ed9e6f7689a0e39f2e345c08170557972c6 (diff)
downloadATCD-805ca90b6c6247cff3d2855875eb8854f82007fb.tar.gz
replaced DEFAULT_SIZE with ACE_DEFAULT_MAP_SIZE so that Naming_Test runs on SunC++ 4.1
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r--ace/Hash_Map_Manager.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h
index cedd589579f..3a197cf1482 100644
--- a/ace/Hash_Map_Manager.h
+++ b/ace/Hash_Map_Manager.h
@@ -71,8 +71,6 @@ class ACE_Hash_Map_Manager
{
friend class ACE_Hash_Map_Iterator<EXT_ID, INT_ID, LOCK>;
public:
- enum {DEFAULT_SIZE = ACE_DEFAULT_MAP_SIZE};
-
typedef ACE_Hash_Map_Entry<EXT_ID, INT_ID> ENTRY;
typedef ACE_Hash_Map_Iterator<EXT_ID, INT_ID, LOCK> ITERATOR;
@@ -85,7 +83,7 @@ public:
ACE_Hash_Map_Manager (ACE_Allocator *allocator = 0);
// Initialize a <Hash_Map_Manager> with default size.
- int open (size_t length = DEFAULT_SIZE,
+ int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *allocator = 0);
// Initialize a <Hash_Map_Manager> with size <length>.