diff options
Diffstat (limited to 'TAO/tests/ORT/ObjectReferenceFactory.cpp')
-rw-r--r-- | TAO/tests/ORT/ObjectReferenceFactory.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tests/ORT/ObjectReferenceFactory.cpp b/TAO/tests/ORT/ObjectReferenceFactory.cpp index 45cb966bc7e..0373edccd29 100644 --- a/TAO/tests/ORT/ObjectReferenceFactory.cpp +++ b/TAO/tests/ORT/ObjectReferenceFactory.cpp @@ -26,8 +26,7 @@ ObjectReferenceFactory::~ObjectReferenceFactory (void) CORBA::Object_ptr ObjectReferenceFactory::make_object ( const char *repository_id, - const PortableInterceptor::ObjectId & id - ACE_ENV_ARG_DECL) + const PortableInterceptor::ObjectId & id) { ACE_ASSERT (repository_id != 0); @@ -35,6 +34,5 @@ ObjectReferenceFactory::make_object ( "Invoked custom ObjectReferenceFactory::make_object()\n")); return this->old_orf_->make_object (repository_id, - id - ACE_ENV_ARG_PARAMETER); + id); } |