summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence_T.i
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1999-06-10 13:43:29 +0000
committergokhale <asgokhale@users.noreply.github.com>1999-06-10 13:43:29 +0000
commit53281cdabf0fb863c80a911cc28b7181e6166f17 (patch)
treeb6354824d00b41f27719afd0371b0d713fbb99d7 /TAO/tao/Sequence_T.i
parent96a521e4eaa5c62ac5cf0cccfd88af87fc7d3866 (diff)
downloadATCD-53281cdabf0fb863c80a911cc28b7181e6166f17.tar.gz
fixed template #params
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 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_);
}
// *************************************************************