summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tao/TypeCode/Sequence_TypeCode.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/TAO/tao/TypeCode/Sequence_TypeCode.cpp b/TAO/tao/TypeCode/Sequence_TypeCode.cpp
index 491b5129ea5..b8130a4c932 100644
--- a/TAO/tao/TypeCode/Sequence_TypeCode.cpp
+++ b/TAO/tao/TypeCode/Sequence_TypeCode.cpp
@@ -18,7 +18,8 @@ TAO::TypeCode::Sequence<RefCountPolicy>::~Sequence (void)
template <class RefCountPolicy>
bool
-TAO::TypeCode::Sequence<RefCountPolicy>::tao_marshal (TAO_OutputCDR & cdr) const
+TAO::TypeCode::Sequence<RefCountPolicy>::tao_marshal (
+ TAO_OutputCDR & cdr) const
{
// A tk_array or tk_sequence TypeCode has a "complex" parameter list
// type (see Table 15-2 in Section 15.3.5.1 "TypeCode" in the CDR
@@ -107,9 +108,9 @@ CORBA::TypeCode_ptr
TAO::TypeCode::Sequence<RefCountPolicy>::get_compact_typecode_i (
ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
- // Already compact since tk_sequence TypeCodes have no name or member
- // names, meaning that we can simply call _duplicate() on this
- // TypeCode.
+ // Already compact since tk_sequence and tk_array TypeCodes have no
+ // name or member names, meaning that we can simply call
+ // _duplicate() on this TypeCode.
return CORBA::TypeCode::_duplicate (this);
}