summaryrefslogtreecommitdiff
path: root/TAO/tao/Policy_Manager.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Policy_Manager.inl')
-rw-r--r--TAO/tao/Policy_Manager.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Policy_Manager.inl b/TAO/tao/Policy_Manager.inl
index b982fad4f14..4d61f6110da 100644
--- a/TAO/tao/Policy_Manager.inl
+++ b/TAO/tao/Policy_Manager.inl
@@ -13,15 +13,15 @@ TAO_Policy_Manager::TAO_Policy_Manager (void)
ACE_INLINE CORBA::Policy_ptr
TAO_Policy_Manager::get_policy (
CORBA::PolicyType policy
- ACE_ENV_ARG_DECL)
+ )
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->mutex_, 0);
- return this->impl_.get_policy (policy ACE_ENV_ARG_PARAMETER);
+ return this->impl_.get_policy (policy);
}
ACE_INLINE CORBA::Policy_ptr
TAO_Policy_Manager::get_cached_policy (TAO_Cached_Policy_Type type
- ACE_ENV_ARG_DECL)
+ )
{
// @@ Previous code used a "double-checked locking hack" to check
@@ -32,7 +32,7 @@ TAO_Policy_Manager::get_cached_policy (TAO_Cached_Policy_Type type
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->mutex_, 0);
return this->impl_.get_cached_policy (type
- ACE_ENV_ARG_PARAMETER);
+ );
}
TAO_END_VERSIONED_NAMESPACE_DECL