summaryrefslogtreecommitdiff
path: root/ace/Containers_T.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-03 18:26:32 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-03 18:26:32 +0000
commit476508361329e0c9a431fdbc86344c3a6caf0571 (patch)
tree4cf3ea03c84abac2a37ee8bfc4ec6cf47226b5bd /ace/Containers_T.cpp
parentcb1f0768e2db53d76f173c687003d098cf6bb456 (diff)
downloadATCD-476508361329e0c9a431fdbc86344c3a6caf0571.tar.gz
ChangeLogTag:Sat Jul 3 12:05:46 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Containers_T.cpp')
-rw-r--r--ace/Containers_T.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/ace/Containers_T.cpp b/ace/Containers_T.cpp
index e5c4d04a295..9956bdcdb52 100644
--- a/ace/Containers_T.cpp
+++ b/ace/Containers_T.cpp
@@ -32,7 +32,8 @@ ACE_Bounded_Stack<T>::ACE_Bounded_Stack (size_t size)
: top_ (0),
size_ (size)
{
- ACE_NEW (this->stack_, T[size]);
+ ACE_NEW (this->stack_,
+ T[size]);
ACE_TRACE ("ACE_Bounded_Stack<T>::ACE_Bounded_Stack");
}
@@ -41,7 +42,8 @@ ACE_Bounded_Stack<T>::ACE_Bounded_Stack (const ACE_Bounded_Stack<T> &s)
: top_ (s.top_),
size_ (s.size_)
{
- ACE_NEW (this->stack_, T[s.size_]);
+ ACE_NEW (this->stack_,
+ T[s.size_]);
ACE_TRACE ("ACE_Bounded_Stack<T>::ACE_Bounded_Stack");
@@ -1486,8 +1488,8 @@ ACE_Bounded_Set<T>::operator= (const ACE_Bounded_Set<T> &bs)
if (this->max_size_ < bs.cur_size_)
{
delete [] this->search_structure_;
- ACE_NEW (this->search_structure_, ACE_TYPENAME
- ACE_Bounded_Set<T>::Search_Structure[bs.cur_size_]);
+ ACE_NEW (this->search_structure_,
+ ACE_TYPENAME ACE_Bounded_Set<T>::Search_Structure[bs.cur_size_]);
this->max_size_ = bs.cur_size_;
}