summaryrefslogtreecommitdiff
path: root/ace/Containers_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-05-30 20:08:37 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-05-30 20:08:37 +0000
commite3878a1d7777f4a3b70f79f5316ddd969c042960 (patch)
treebb598e1bc5052e4d84391e360748b89fdb5de2e6 /ace/Containers_T.h
parent1d8ddecf262df7c9340a1079bcd550cbbe8a1c3f (diff)
downloadATCD-e3878a1d7777f4a3b70f79f5316ddd969c042960.tar.gz
ChangeLogTag:Fri May 30 14:46:00 2003 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/Containers_T.h')
-rw-r--r--ace/Containers_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Containers_T.h b/ace/Containers_T.h
index 1cd1e016d92..19c5abc6a9a 100644
--- a/ace/Containers_T.h
+++ b/ace/Containers_T.h
@@ -386,7 +386,7 @@ public:
* Initialize an empty stack using the user specified allocation strategy
* if provided.
*/
- ACE_Unbounded_Stack (ACE_Allocator *alloc = 0);
+ ACE_Unbounded_Stack (ACE_Allocator *the_allocator = 0);
/// The copy constructor (performs initialization).
/**
@@ -837,7 +837,7 @@ public:
* Initialize an empy list using the allocation strategy specified by the user.
* If none is specified, then use default allocation strategy.
*/
- ACE_Double_Linked_List (ACE_Allocator *alloc = 0);
+ ACE_Double_Linked_List (ACE_Allocator *the_allocator = 0);
/// Copy constructor.
/**
@@ -1065,7 +1065,7 @@ public:
// = Initialization and termination methods.
/// Delegates to ACE_Double_Linked_List.
- ACE_DLList (ACE_Allocator *alloc = 0);
+ ACE_DLList (ACE_Allocator *the_allocator = 0);
/// Delegates to ACE_Double_Linked_List.
ACE_DLList (const ACE_DLList<T> &l);
@@ -1753,7 +1753,7 @@ public:
* Initialize the set using the allocation strategy specified. If none, use the
* default strategy.
*/
- ACE_Ordered_MultiSet (ACE_Allocator *alloc = 0);
+ ACE_Ordered_MultiSet (ACE_Allocator *the_allocator = 0);
/// Copy constructor.
/**