summaryrefslogtreecommitdiff
path: root/TAO/tao/Object.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-01 10:51:23 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-01 10:51:23 +0100
commitc3e71f69e85deb48d5f3cdba355679da4deffdb3 (patch)
tree8fdc1065862e4a4f696d4cc4d5c0292345802ae5 /TAO/tao/Object.cpp
parent8ab31e3e5bb8c09a9c326a54545f4cb475345a78 (diff)
downloadATCD-c3e71f69e85deb48d5f3cdba355679da4deffdb3.tar.gz
good_bit is a bool and removed some uncessary c-style casts
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)