summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-02 09:09:04 +0100
committerGitHub <noreply@github.com>2023-02-02 09:09:04 +0100
commit107d2bfea7caaecb5e00c67134786b011bf4479b (patch)
tree0945094240686a43343f14ff8186f5dc0248d40c /TAO/tao/Stub.cpp
parent8ab31e3e5bb8c09a9c326a54545f4cb475345a78 (diff)
parent01cb9ff254befab9c674e957a9e063b3c09bcc26 (diff)
downloadATCD-107d2bfea7caaecb5e00c67134786b011bf4479b.tar.gz
Merge pull request #2041 from jwillemsen/jwi-goodbit
good_bit is a bool and removed some uncessary c-style casts
Diffstat (limited to 'TAO/tao/Stub.cpp')
-rw-r--r--TAO/tao/Stub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Stub.cpp b/TAO/tao/Stub.cpp
index c132daaeef9..4517c747428 100644
--- a/TAO/tao/Stub.cpp
+++ b/TAO/tao/Stub.cpp
@@ -569,7 +569,7 @@ TAO_Stub::marshal (TAO_OutputCDR &cdr)
// release ACE_Lock
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
TAO_END_VERSIONED_NAMESPACE_DECL