summaryrefslogtreecommitdiff
path: root/TAO/tao/Object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Object.cpp')
-rw-r--r--TAO/tao/Object.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Object.cpp b/TAO/tao/Object.cpp
index f1be9002e7d..1fdb4a980ec 100644
--- a/TAO/tao/Object.cpp
+++ b/TAO/tao/Object.cpp
@@ -136,7 +136,7 @@ CORBA::Object::marshal (const CORBA::Object_ptr x, TAO_OutputCDR &cdr)
cdr.write_ulong (1);
cdr.write_char ('\0');
cdr.write_ulong (0);
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
return x->marshal (cdr);
@@ -707,7 +707,7 @@ operator<< (TAO_OutputCDR& cdr, const CORBA::Object* x)
cdr.write_ulong (1);
cdr.write_char ('\0');
cdr.write_ulong (0);
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
if (!x->is_evaluated ())
@@ -873,7 +873,7 @@ operator>> (TAO_InputCDR& cdr, CORBA::Object*& x)
if (profile_count == 0)
{
x = CORBA::Object::_nil ();
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
// get a profile container to store all profiles in the IOR.
@@ -981,7 +981,7 @@ operator>> (TAO_InputCDR& cdr, CORBA::Object*& x)
}
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
#if defined (GEN_OSTREAM_OPS)