diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 19:14:17 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 19:14:17 +0000 |
commit | 1db691c29110b92dbb50789b8d11c666f1f3167a (patch) | |
tree | 7ffc56b3fab9af284a2578a9bb878cf1593d7ca5 /TAO/tao | |
parent | b1067a3eebe7478bcaa5f22ee10c44df87a5dac5 (diff) | |
download | ATCD-1db691c29110b92dbb50789b8d11c666f1f3167a.tar.gz |
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/Base_Transport_Property.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/TAO/tao/Base_Transport_Property.cpp b/TAO/tao/Base_Transport_Property.cpp index 4f46e782f41..9433bfa562d 100644 --- a/TAO/tao/Base_Transport_Property.cpp +++ b/TAO/tao/Base_Transport_Property.cpp @@ -21,23 +21,20 @@ TAO_Transport_Descriptor_Interface * TAO_Base_Transport_Property::duplicate (void) { // Get a copy of the underlying endpoint - TAO_Endpoint * const endpt = this->endpoint_->duplicate (); + TAO_Endpoint *const endpt = this->endpoint_->duplicate (); if (endpt == 0) return 0; // Construct a copy of our class TAO_Base_Transport_Property *prop = 0; - ACE_NEW_RETURN (prop, - TAO_Base_Transport_Property (endpt, - true), - 0); + ACE_NEW_RETURN (prop, TAO_Base_Transport_Property (endpt, true), 0); return prop; } CORBA::Boolean -TAO_Base_Transport_Property::is_equivalent ( - const TAO_Transport_Descriptor_Interface *rhs) +TAO_Base_Transport_Property::is_equivalent + (const TAO_Transport_Descriptor_Interface *rhs) { const TAO_Base_Transport_Property *other_desc = dynamic_cast<const TAO_Base_Transport_Property *> (rhs); |