summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl19
1 files changed, 8 insertions, 11 deletions
diff --git a/TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl b/TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl
index 4a2192e5a18..c042ea793c5 100644
--- a/TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl
+++ b/TAO/orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.inl
@@ -6,33 +6,30 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template<class PROXY, class C, class I,ACE_SYNCH_DECL> void
TAO_ESF_Delayed_Changes<PROXY,C,I,ACE_SYNCH_USE>::
- connected_i (PROXY *proxy
- ACE_ENV_ARG_DECL)
+ connected_i (PROXY *proxy)
{
- this->collection_.connected (proxy ACE_ENV_ARG_PARAMETER);
+ this->collection_.connected (proxy);
}
template<class PROXY, class C, class I,ACE_SYNCH_DECL> void
TAO_ESF_Delayed_Changes<PROXY,C,I,ACE_SYNCH_USE>::
- reconnected_i (PROXY *proxy
- ACE_ENV_ARG_DECL)
+ reconnected_i (PROXY *proxy)
{
- this->collection_.reconnected (proxy ACE_ENV_ARG_PARAMETER);
+ this->collection_.reconnected (proxy);
}
template<class PROXY, class C, class I,ACE_SYNCH_DECL> void
TAO_ESF_Delayed_Changes<PROXY,C,I,ACE_SYNCH_USE>::
- disconnected_i (PROXY *proxy
- ACE_ENV_ARG_DECL)
+ disconnected_i (PROXY *proxy)
{
- this->collection_.disconnected (proxy ACE_ENV_ARG_PARAMETER);
+ this->collection_.disconnected (proxy);
}
template<class PROXY, class C, class I,ACE_SYNCH_DECL> void
TAO_ESF_Delayed_Changes<PROXY,C,I,ACE_SYNCH_USE>::
- shutdown_i (ACE_ENV_SINGLE_ARG_DECL)
+ shutdown_i (void)
{
- this->collection_.shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
+ this->collection_.shutdown ();
}
TAO_END_VERSIONED_NAMESPACE_DECL