summaryrefslogtreecommitdiff
path: root/TAO/tests/COIOP/Hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/COIOP/Hello.cpp')
-rw-r--r--TAO/tests/COIOP/Hello.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/COIOP/Hello.cpp b/TAO/tests/COIOP/Hello.cpp
index dd559fd879b..d7339a7eb0b 100644
--- a/TAO/tests/COIOP/Hello.cpp
+++ b/TAO/tests/COIOP/Hello.cpp
@@ -16,7 +16,7 @@ ACE_RCSID(Hello, Hello, "$Id$")
}
char *
-Hello::get_string (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+Hello::get_string (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
@@ -59,12 +59,12 @@ Hello::get_string (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
}
void
-Hello::shutdown (ACE_ENV_SINGLE_ARG_DECL)
+Hello::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
// Give the client thread time to return from the collocated
// call to this method before shutting down the ORB. We sleep
// to avoid BAD_INV_ORDER exceptions on fast dual processor machines.
ACE_OS::sleep (1);
- this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0);
}