summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-03-24 08:37:08 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-03-24 08:37:08 +0000
commit41daa797592956327fe87852afdc450d45461233 (patch)
treed31ebe574625216529f0ac9058b1bed532dc8b53
parentafc40b8131c10ce841c678ef456fcccc2c35bb5b (diff)
downloadATCD-41daa797592956327fe87852afdc450d45461233.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/Sequence_TypeCode.h4
-rw-r--r--TAO/tao/Sequence_TypeCode.inl7
2 files changed, 6 insertions, 5 deletions
diff --git a/TAO/tao/Sequence_TypeCode.h b/TAO/tao/Sequence_TypeCode.h
index ca8da2e7094..b1c2efebbdc 100644
--- a/TAO/tao/Sequence_TypeCode.h
+++ b/TAO/tao/Sequence_TypeCode.h
@@ -45,8 +45,8 @@ namespace TAO
/// Constructor.
Sequence (CORBA::TCKind kind,
- CORBA::ULong length,
- CORBA::TypeCode_ptr * tc);
+ CORBA::TypeCode_ptr * content_type,
+ CORBA::ULong length);
/// Destructor.
~Sequence (void);
diff --git a/TAO/tao/Sequence_TypeCode.inl b/TAO/tao/Sequence_TypeCode.inl
index 68ce65f660b..2c0edb2e190 100644
--- a/TAO/tao/Sequence_TypeCode.inl
+++ b/TAO/tao/Sequence_TypeCode.inl
@@ -4,9 +4,10 @@
template <class RefCountPolicy>
ACE_INLINE
-TAO::TypeCode::Array<RefCountPolicy::Array (CORBA::TCKind kind,
- CORBA::ULong length,
- CORBA::TypeCode_ptr * content_type)
+TAO::TypeCode::Sequence<RefCountPolicy>::Sequence (
+ CORBA::TCKind kind,
+ CORBA::TypeCode_ptr * content_type,
+ CORBA::ULong length)
: kind_ (kind)
, content_type_ (content_type)
, length_ (length)