summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp')
-rw-r--r--TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp b/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
index 256fc9ad668..d6da384d62b 100644
--- a/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
+++ b/TAO/orbsvcs/examples/LoadBalancing/ORBInitializer.cpp
@@ -20,16 +20,14 @@ ORBInitializer::ORBInitializer (void)
void
ORBInitializer::pre_init (
- PortableInterceptor::ORBInitInfo_ptr
- ACE_ENV_ARG_DECL_NOT_USED)
+ PortableInterceptor::ORBInitInfo_ptr)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
void
ORBInitializer::post_init (
- PortableInterceptor::ORBInitInfo_ptr info
- ACE_ENV_ARG_DECL)
+ PortableInterceptor::ORBInitInfo_ptr info)
ACE_THROW_SPEC ((CORBA::SystemException))
{
@@ -44,8 +42,7 @@ ORBInitializer::post_init (
PortableInterceptor::ServerRequestInterceptor_var sr_interceptor =
this->interceptor_;
- info->add_server_request_interceptor (sr_interceptor.in ()
- ACE_ENV_ARG_PARAMETER);
+ info->add_server_request_interceptor (sr_interceptor.in ());
PortableInterceptor::ServerRequestInterceptor_ptr reject_interceptor;
ACE_NEW_THROW_EX (reject_interceptor,
@@ -59,8 +56,7 @@ ORBInitializer::post_init (
PortableInterceptor::ServerRequestInterceptor_var safe_reject_interceptor =
reject_interceptor;
- info->add_server_request_interceptor (safe_reject_interceptor.in ()
- ACE_ENV_ARG_PARAMETER);
+ info->add_server_request_interceptor (safe_reject_interceptor.in ());
}