summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/Echo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/AMI/Echo.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Echo.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/Echo.cpp b/TAO/tests/Portable_Interceptors/AMI/Echo.cpp
index 677ebee90b9..89e5f53ca1a 100644
--- a/TAO/tests/Portable_Interceptors/AMI/Echo.cpp
+++ b/TAO/tests/Portable_Interceptors/AMI/Echo.cpp
@@ -15,16 +15,15 @@ Echo::Echo(CORBA::ORB_ptr orb)
}
char *
-Echo::echo_operation(char const * the_input
- ACE_ENV_ARG_DECL_NOT_USED)
+Echo::echo_operation(char const * the_input)
ACE_THROW_SPEC((CORBA::SystemException))
{
return CORBA::string_dup(the_input);
}
void
-Echo::shutdown(ACE_ENV_SINGLE_ARG_DECL)
+Echo::shutdown(void)
ACE_THROW_SPEC((CORBA::SystemException))
{
- this->orb_->shutdown(0 ACE_ENV_ARG_PARAMETER);
+ this->orb_->shutdown(0);
}