summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp')
-rw-r--r--TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp b/TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp
index 4660b359253..85ef4a595f1 100644
--- a/TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp
+++ b/TAO/tao/AnyTypeCode/Empty_Param_TypeCode.cpp
@@ -15,8 +15,7 @@ ACE_RCSID (AnyTypeCode,
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
bool
-TAO::TypeCode::Empty_Param::tao_marshal (TAO_OutputCDR &,
- CORBA::ULong) const
+TAO::TypeCode::Empty_Param::tao_marshal (TAO_OutputCDR &, CORBA::ULong) const
{
// Empty parameter list. Nothing to marshal.
@@ -40,8 +39,7 @@ TAO::TypeCode::Empty_Param::tao_release (void)
}
CORBA::Boolean
-TAO::TypeCode::Empty_Param::equal_i (CORBA::TypeCode_ptr
- ) const
+TAO::TypeCode::Empty_Param::equal_i (CORBA::TypeCode_ptr) const
{
// Equality has already been established in the
// CORBA::TypeCode base class.
@@ -50,8 +48,7 @@ TAO::TypeCode::Empty_Param::equal_i (CORBA::TypeCode_ptr
}
CORBA::Boolean
-TAO::TypeCode::Empty_Param::equivalent_i (CORBA::TypeCode_ptr tc
- ) const
+TAO::TypeCode::Empty_Param::equivalent_i (CORBA::TypeCode_ptr tc) const
{
// We could refactor this code to the CORBA::TypeCode::equivalent()
// method but doing so would force us to determine the unaliased
@@ -59,9 +56,7 @@ TAO::TypeCode::Empty_Param::equivalent_i (CORBA::TypeCode_ptr tc
// of this TypeCode, choose to optimize away the additional kind
// unaliasing operation rather than save space.
- CORBA::TCKind const tc_kind =
- TAO::unaliased_kind (tc
- );
+ CORBA::TCKind const tc_kind = TAO::unaliased_kind (tc);
if (tc_kind != this->kind_)
return false;
@@ -70,8 +65,7 @@ TAO::TypeCode::Empty_Param::equivalent_i (CORBA::TypeCode_ptr tc
}
CORBA::TypeCode_ptr
-TAO::TypeCode::Empty_Param::get_compact_typecode_i (
- void) const
+TAO::TypeCode::Empty_Param::get_compact_typecode_i (void) const
{
// Already compact since parameter list is empty.