summaryrefslogtreecommitdiff
path: root/TAO/tests/Server_Port_Zero/Hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Server_Port_Zero/Hello.cpp')
-rw-r--r--TAO/tests/Server_Port_Zero/Hello.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Server_Port_Zero/Hello.cpp b/TAO/tests/Server_Port_Zero/Hello.cpp
index 457b7da1064..379c52e6aa5 100644
--- a/TAO/tests/Server_Port_Zero/Hello.cpp
+++ b/TAO/tests/Server_Port_Zero/Hello.cpp
@@ -13,15 +13,15 @@ Hello::Hello (CORBA::ORB_ptr orb)
}
char *
-Hello::get_string (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+Hello::get_string (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::string_dup ("Hello there!");
}
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);
}