summaryrefslogtreecommitdiff
path: root/tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp')
-rw-r--r--tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp b/tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp
index 120cec2326c..21e97d61939 100644
--- a/tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp
+++ b/tao/AnyTypeCode/TypeCode_Case_Enum_T.cpp
@@ -57,20 +57,20 @@ TAO::TypeCode::Case_Enum_T<StringType,
{
CORBA::Any_var any = tc->member_label (index);
TAO_OutputCDR out_cdr;
-
+
if (! any->impl ()->marshal_value (out_cdr))
{
return false;
}
-
+
TAO_InputCDR in_cdr (out_cdr);
CORBA::ULong tc_label = ACE_UINT32_MAX;
-
+
if (! in_cdr.read_ulong (tc_label))
{
return false;
}
-
+
return (this->label_ == tc_label);
}