summaryrefslogtreecommitdiff
path: root/TAO/tao/Sequence_TypeCode.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Sequence_TypeCode.inl')
-rw-r--r--TAO/tao/Sequence_TypeCode.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/tao/Sequence_TypeCode.inl b/TAO/tao/Sequence_TypeCode.inl
deleted file mode 100644
index 81e7add5646..00000000000
--- a/TAO/tao/Sequence_TypeCode.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-template <typename TypeCodeType, class RefCountPolicy>
-ACE_INLINE
-TAO::TypeCode::Sequence<TypeCodeType, RefCountPolicy>::Sequence (
- CORBA::TCKind kind,
-#if defined (__BORLANDC__) && (__BORLANDC__ < 0x572)
- // Borland C++ currently can't handle a reference to
- // const pointer to const CORBA::TypeCode_ptr
- TypeCodeType content_type,
-#else
- TypeCodeType const & content_type,
-#endif
- CORBA::ULong length)
- : CORBA::TypeCode (kind)
- , RefCountPolicy ()
- , content_type_ (content_type)
- , length_ (length)
-{
- // ACE_ASSERT (kind == CORBA::tk_array || kind == CORBA::tk_sequence);
-}