summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-03-07 10:11:07 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-03-07 10:11:07 +0000
commit0b41eaeb64369a6a5da6983cdef1dcf777df97d9 (patch)
tree88f9d49ed9c53be30c25e7ffd7f76b36c37dbd3d
parentf73c0ddd7045c1cb6bf9d5b410fdda9fea4a2cce (diff)
downloadATCD-0b41eaeb64369a6a5da6983cdef1dcf777df97d9.tar.gz
*** empty log message ***
-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);
}