summaryrefslogtreecommitdiff
path: root/TAO/tao/Forwarding_Servant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Forwarding_Servant.cpp')
-rw-r--r--TAO/tao/Forwarding_Servant.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/TAO/tao/Forwarding_Servant.cpp b/TAO/tao/Forwarding_Servant.cpp
index bd2ae762d23..eca4db6c77e 100644
--- a/TAO/tao/Forwarding_Servant.cpp
+++ b/TAO/tao/Forwarding_Servant.cpp
@@ -38,10 +38,14 @@ TAO_Forwarding_Servant::invoke (CORBA::ServerRequest_ptr request,
}
CORBA::RepositoryId
-TAO_Forwarding_Servant::_primary_interface (const PortableServer::ObjectId & /* oid */,
- PortableServer::POA_ptr /* poa */,
- CORBA::Environment & /* ACE_TRY_ENV */)
+TAO_Forwarding_Servant::_primary_interface (const PortableServer::ObjectId &oid,
+ PortableServer::POA_ptr poa,
+ CORBA::Environment &env)
{
+ ACE_UNUSED_ARG (oid);
+ ACE_UNUSED_ARG (poa);
+ ACE_UNUSED_ARG (env);
+
return CORBA::string_dup (this->interface_repository_id_.in ());
}