summaryrefslogtreecommitdiff
path: root/TAO/tests/Any/Recursive/Hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Any/Recursive/Hello.cpp')
-rw-r--r--TAO/tests/Any/Recursive/Hello.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/TAO/tests/Any/Recursive/Hello.cpp b/TAO/tests/Any/Recursive/Hello.cpp
index 4ad14983990..b023cf9d179 100644
--- a/TAO/tests/Any/Recursive/Hello.cpp
+++ b/TAO/tests/Any/Recursive/Hello.cpp
@@ -14,8 +14,7 @@ Hello::Hello (CORBA::ORB_ptr orb)
}
CORBA::Any *
-Hello::get_any (CORBA::Any const & the_any
- ACE_ENV_ARG_DECL)
+Hello::get_any (CORBA::Any const & the_any)
ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA::Any * retval = 0;
@@ -23,16 +22,14 @@ Hello::get_any (CORBA::Any const & the_any
ACE_NEW_THROW_EX (retval,
CORBA::Any (the_any),
CORBA::NO_MEMORY ());
- ACE_CHECK_RETURN (retval);
return retval;
}
void
-Hello::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+Hello::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- this->orb_->shutdown (0
- ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0);
}