summaryrefslogtreecommitdiff
path: root/ACE/ace/Vector_T.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-11-22 19:16:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-11-22 19:16:20 +0000
commit901e787f3b0554fe3889a2e8ad272651a1c49d69 (patch)
treef601e10b5ff3e80f6358a05650a744618741facf /ACE/ace/Vector_T.inl
parent5db4df11fd0de6ea71a76a6c4956a42322b645cd (diff)
downloadATCD-901e787f3b0554fe3889a2e8ad272651a1c49d69.tar.gz
Diffstat (limited to 'ACE/ace/Vector_T.inl')
-rw-r--r--ACE/ace/Vector_T.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Vector_T.inl b/ACE/ace/Vector_T.inl
index 9c552efea5f..8dea22cd361 100644
--- a/ACE/ace/Vector_T.inl
+++ b/ACE/ace/Vector_T.inl
@@ -11,7 +11,7 @@ ACE_Vector<T, DEFAULT_SIZE>::ACE_Vector (const size_t init_size,
ACE_Allocator* alloc)
: ACE_Array<T> (init_size == 0 ? DEFAULT_SIZE : init_size, alloc),
length_ (0),
- curr_max_size_ (max_size ())
+ curr_max_size_ (this->max_size ())
{
}