diff options
Diffstat (limited to 'TAO/tests/AMI_Timeouts/timeout_i.cpp')
-rw-r--r-- | TAO/tests/AMI_Timeouts/timeout_i.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/TAO/tests/AMI_Timeouts/timeout_i.cpp b/TAO/tests/AMI_Timeouts/timeout_i.cpp index ff9fab96bd8..aea3b3444f6 100644 --- a/TAO/tests/AMI_Timeouts/timeout_i.cpp +++ b/TAO/tests/AMI_Timeouts/timeout_i.cpp @@ -48,7 +48,7 @@ Timeout_i::sendTimeToWait (CORBA::Long msec } void -Timeout_i::shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) +Timeout_i::shutdown (void) ACE_THROW_SPEC ((CORBA::SystemException)) { orb_->shutdown (); @@ -72,7 +72,7 @@ TimeoutHandler_i::~TimeoutHandler_i () } void -TimeoutHandler_i::sendTimeToWait (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) +TimeoutHandler_i::sendTimeToWait (void) ACE_THROW_SPEC ((CORBA::SystemException)) { ACE_DEBUG ((LM_DEBUG, @@ -90,8 +90,7 @@ TimeoutHandler_i::sendTimeToWait_excep (::Messaging::ExceptionHolder *excep_hold ACE_TRY { - excep_holder->raise_exception (ACE_ENV_SINGLE_ARG_PARAMETER); - ACE_TRY_CHECK; + excep_holder->raise_exception (); } ACE_CATCH (CORBA::TIMEOUT, timeout) { |