summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-14 19:08:15 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-14 19:08:15 +0000
commite14281d006ab60367878cdd85d503f948cff9ba7 (patch)
tree9c1cfa3b168226a2a5f918b750396f3511041766 /TAO/orbsvcs/tests
parent51033480d7a3ee940afbb7ea40ed3e12ae35fae6 (diff)
downloadATCD-e14281d006ab60367878cdd85d503f948cff9ba7.tar.gz
ChangeLogTag:Thu May 14 08:30:26 1998 Carlos O'Ryan <coryan@watusi.cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/tests')
-rw-r--r--TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
index 94f11d56d78..80a4345b474 100644
--- a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
+++ b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
@@ -568,10 +568,11 @@ Test_ECG::get_ec (CosNaming::NamingContext_ptr naming_context,
CORBA::Object_var ec_ptr =
naming_context->resolve (channel_name, _env);
- if (_env.exception () != 0 || CORBA::is_nil (ec_ptr))
+ if (_env.exception () != 0 || CORBA::is_nil (ec_ptr.in ()))
return RtecEventChannelAdmin::EventChannel::_nil ();
- return RtecEventChannelAdmin::EventChannel::_narrow (ec_ptr, _env);
+ return RtecEventChannelAdmin::EventChannel::_narrow (ec_ptr.in (),
+ _env);
}
void
@@ -882,7 +883,7 @@ void
Test_ECG::push_consumer (void *consumer_cookie,
ACE_hrtime_t arrival,
const RtecEventComm::EventSet &events,
- CORBA::Environment & _env)
+ CORBA::Environment &)
{
int ID =
(ACE_reinterpret_cast(Test_Consumer**,consumer_cookie)
@@ -1571,7 +1572,7 @@ Test_Consumer::push (const RtecEventComm::EventSet& events,
}
void
-Test_Consumer::disconnect_push_consumer (CORBA::Environment &_env)
+Test_Consumer::disconnect_push_consumer (CORBA::Environment &)
{
}