summaryrefslogtreecommitdiff
path: root/ace/Containers_T.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-20 06:24:11 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-04-20 06:24:11 +0000
commit31d6ad74510bdfe73449a8574d66511ce4aabce2 (patch)
treedbf60c885b81248dd40b5f10247f62dec269c45b /ace/Containers_T.cpp
parentf422b595223ea66591795410551c08464fc8ce51 (diff)
downloadATCD-31d6ad74510bdfe73449a8574d66511ce4aabce2.tar.gz
ChangeLogTag:Fri Apr 20 00:57:24 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Containers_T.cpp')
-rw-r--r--ace/Containers_T.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/Containers_T.cpp b/ace/Containers_T.cpp
index 8d72da5d5a3..47a4f91fd3b 100644
--- a/ace/Containers_T.cpp
+++ b/ace/Containers_T.cpp
@@ -62,6 +62,7 @@ ACE_Bounded_Stack<T>::operator= (const ACE_Bounded_Stack<T> &s)
delete [] this->stack_;
ACE_NEW (this->stack_,
T[s.size_]);
+ this->size_ = s.size_;
}
this->top_ = s.top_;