diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1999-06-10 13:43:29 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1999-06-10 13:43:29 +0000 |
commit | 53281cdabf0fb863c80a911cc28b7181e6166f17 (patch) | |
tree | b6354824d00b41f27719afd0371b0d713fbb99d7 /TAO/tao/Sequence_T.i | |
parent | 96a521e4eaa5c62ac5cf0cccfd88af87fc7d3866 (diff) | |
download | ATCD-53281cdabf0fb863c80a911cc28b7181e6166f17.tar.gz |
fixed template #params
Diffstat (limited to 'TAO/tao/Sequence_T.i')
-rw-r--r-- | TAO/tao/Sequence_T.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Sequence_T.i b/TAO/tao/Sequence_T.i index 005c9e161ec..7c27d89f237 100644 --- a/TAO/tao/Sequence_T.i +++ b/TAO/tao/Sequence_T.i @@ -381,7 +381,7 @@ TAO_Bounded_Pseudo_Sequence<T, T_var,MAX>::operator[] (CORBA::ULong slot) const { ACE_ASSERT (slot < this->maximum_); T **const tmp = ACE_reinterpret_cast (T ** ACE_CAST_CONST, this->buffer_); - return TAO_Object_Manager<T> (tmp + slot, this->release_); + return TAO_Object_Manager<T,T_var> (tmp + slot, this->release_); } // ************************************************************* |