summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Sequence_TypeCode.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/AnyTypeCode/Sequence_TypeCode.inl')
-rw-r--r--TAO/tao/AnyTypeCode/Sequence_TypeCode.inl6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/tao/AnyTypeCode/Sequence_TypeCode.inl b/TAO/tao/AnyTypeCode/Sequence_TypeCode.inl
index 81e7add5646..eced0644709 100644
--- a/TAO/tao/AnyTypeCode/Sequence_TypeCode.inl
+++ b/TAO/tao/AnyTypeCode/Sequence_TypeCode.inl
@@ -2,6 +2,8 @@
//
// $Id$
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
template <typename TypeCodeType, class RefCountPolicy>
ACE_INLINE
TAO::TypeCode::Sequence<TypeCodeType, RefCountPolicy>::Sequence (
@@ -14,10 +16,12 @@ TAO::TypeCode::Sequence<TypeCodeType, RefCountPolicy>::Sequence (
TypeCodeType const & content_type,
#endif
CORBA::ULong length)
- : CORBA::TypeCode (kind)
+ : ::CORBA::TypeCode (kind)
, RefCountPolicy ()
, content_type_ (content_type)
, length_ (length)
{
// ACE_ASSERT (kind == CORBA::tk_array || kind == CORBA::tk_sequence);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL