summaryrefslogtreecommitdiff
path: root/ace/Containers_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Containers_T.cpp')
-rw-r--r--ace/Containers_T.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/ace/Containers_T.cpp b/ace/Containers_T.cpp
index 47a4f91fd3b..8d72da5d5a3 100644
--- a/ace/Containers_T.cpp
+++ b/ace/Containers_T.cpp
@@ -62,7 +62,6 @@ 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_;