diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-04-20 06:24:11 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-04-20 06:24:11 +0000 |
commit | 31d6ad74510bdfe73449a8574d66511ce4aabce2 (patch) | |
tree | dbf60c885b81248dd40b5f10247f62dec269c45b /ace/Containers_T.cpp | |
parent | f422b595223ea66591795410551c08464fc8ce51 (diff) | |
download | ATCD-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.cpp | 1 |
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_; |