summaryrefslogtreecommitdiff
path: root/TAO/tao/Profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Profile.cpp')
-rw-r--r--TAO/tao/Profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Profile.cpp b/TAO/tao/Profile.cpp
index 9bc48cb6352..6465f4ef0a2 100644
--- a/TAO/tao/Profile.cpp
+++ b/TAO/tao/Profile.cpp
@@ -889,7 +889,7 @@ operator<< (TAO_OutputCDR& cdr, const TAO_opaque& x)
cdr.write_octet_array (x.get_buffer (), length);
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
CORBA::Boolean
@@ -917,7 +917,7 @@ operator>>(TAO_InputCDR& cdr, TAO_opaque& x)
cdr.read_octet_array (x.get_buffer (), length);
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
TAO_END_VERSIONED_NAMESPACE_DECL