diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-09-27 20:19:28 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-09-27 20:19:28 +0000 |
commit | 8c616fced2097b0da4c8f4beae15fb00550237f1 (patch) | |
tree | 3de946d9abb9b19f1e520fb0ac9f46e14c6593a0 /TAO/tao/Sequence_T.cpp | |
parent | d03f883c0b0d30df81fc49d23690c7cbe03e9fd3 (diff) | |
download | ATCD-8c616fced2097b0da4c8f4beae15fb00550237f1.tar.gz |
Bug fixes for Philippe Merle, fixes sent in by Philippe Merle,
and a missing base class call to operator= in TAO_Bounded_Array_Sequence.
Diffstat (limited to 'TAO/tao/Sequence_T.cpp')
-rw-r--r-- | TAO/tao/Sequence_T.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/TAO/tao/Sequence_T.cpp b/TAO/tao/Sequence_T.cpp index 679704408e5..5e4400890e0 100644 --- a/TAO/tao/Sequence_T.cpp +++ b/TAO/tao/Sequence_T.cpp @@ -1198,6 +1198,8 @@ TAO_Bounded_Array_Sequence<T, T_var, MAX>::operator= TAO_Bounded_Array_Sequence<T, T_var, MAX>::allocbuf (rhs.maximum_); } + TAO_Bounded_Base_Sequence::operator= (rhs); + for (CORBA::ULong i = 0; i < rhs.length_; ++i) { #if defined (__SUNPRO_CC) && (__SUNPRO_CC < 0x500) |