diff options
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp')
-rw-r--r-- | TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp b/TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp index 0488fe02fd0..3f59631356a 100644 --- a/TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp +++ b/TAO/orbsvcs/tests/Bug_2285_Regression/ServerORBInitializer.cpp @@ -10,8 +10,7 @@ void Server_ORBInitializer::pre_init ( - PortableInterceptor::ORBInitInfo_ptr - ACE_ENV_ARG_DECL_NOT_USED) + PortableInterceptor::ORBInitInfo_ptr) ACE_THROW_SPEC ((CORBA::SystemException)) { @@ -19,18 +18,15 @@ Server_ORBInitializer::pre_init ( void Server_ORBInitializer::post_init ( - PortableInterceptor::ORBInitInfo_ptr info - ACE_ENV_ARG_DECL) + PortableInterceptor::ORBInitInfo_ptr info) ACE_THROW_SPEC ((CORBA::SystemException)) { - this->register_server_request_interceptors (info - ACE_ENV_ARG_PARAMETER); + this->register_server_request_interceptors (info); } void Server_ORBInitializer::register_server_request_interceptors ( - PortableInterceptor::ORBInitInfo_ptr info - ACE_ENV_ARG_DECL) + PortableInterceptor::ORBInitInfo_ptr info) ACE_THROW_SPEC ((CORBA::SystemException)) { PortableInterceptor::ServerRequestInterceptor_ptr sri = @@ -43,8 +39,7 @@ Server_ORBInitializer::register_server_request_interceptors ( PortableInterceptor::ServerRequestInterceptor_var server_interceptor = sri; - info->add_server_request_interceptor (server_interceptor.in () - ACE_ENV_ARG_PARAMETER); + info->add_server_request_interceptor (server_interceptor.in ()); } |