summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence_T.i
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-19 22:50:22 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-19 22:50:22 +0000
commit053d843a08130aa8135b857259a405cd19329177 (patch)
tree410b678f68e550c8843289d575cc4408028cd7ca /TAO/tao/Sequence_T.i
parent34969112b8d761af34ad00750f57db2f3d59a581 (diff)
downloadATCD-053d843a08130aa8135b857259a405cd19329177.tar.gz
Removed buffer allocation from default constructor.
Diffstat (limited to 'TAO/tao/Sequence_T.i')
-rw-r--r--TAO/tao/Sequence_T.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Sequence_T.i b/TAO/tao/Sequence_T.i
index 9b32198a53a..f70e86b976a 100644
--- a/TAO/tao/Sequence_T.i
+++ b/TAO/tao/Sequence_T.i
@@ -117,8 +117,8 @@ TAO_Bounded_Sequence<T, MAX>::freebuf (T *buffer)
template <class T, size_t MAX> ACE_INLINE
TAO_Bounded_Sequence<T, MAX>::TAO_Bounded_Sequence (void)
- : TAO_Bounded_Base_Sequence (MAX, 0, allocbuf (MAX), 1)
{
+ this->maximum_ = MAX;
}
template <class T, size_t MAX> ACE_INLINE