summaryrefslogtreecommitdiff
path: root/TAO/tests/Parallel_Connect_Strategy/Test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Parallel_Connect_Strategy/Test_i.cpp')
-rw-r--r--TAO/tests/Parallel_Connect_Strategy/Test_i.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Parallel_Connect_Strategy/Test_i.cpp b/TAO/tests/Parallel_Connect_Strategy/Test_i.cpp
index bdf487d4a54..b446a7fbe94 100644
--- a/TAO/tests/Parallel_Connect_Strategy/Test_i.cpp
+++ b/TAO/tests/Parallel_Connect_Strategy/Test_i.cpp
@@ -9,15 +9,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);
}