summaryrefslogtreecommitdiff
path: root/TAO/tao/Principal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Principal.cpp')
-rw-r--r--TAO/tao/Principal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Principal.cpp b/TAO/tao/Principal.cpp
index a8710e3b283..7b5f1c318cb 100644
--- a/TAO/tao/Principal.cpp
+++ b/TAO/tao/Principal.cpp
@@ -34,7 +34,7 @@ operator<< (TAO_OutputCDR & cdr, CORBA::Principal * x)
cdr.write_ulong (0);
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
CORBA::Boolean
@@ -54,7 +54,7 @@ operator>> (TAO_InputCDR & cdr, CORBA::Principal *& x)
cdr.read_octet_array (x->id.get_buffer (), length);
}
- return (CORBA::Boolean) cdr.good_bit ();
+ return cdr.good_bit ();
}
TAO_END_VERSIONED_NAMESPACE_DECL