summaryrefslogtreecommitdiff
path: root/TAO/tao/FILE_Parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/FILE_Parser.cpp')
-rw-r--r--TAO/tao/FILE_Parser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/FILE_Parser.cpp b/TAO/tao/FILE_Parser.cpp
index 5b97b90919e..8ddad3a1661 100644
--- a/TAO/tao/FILE_Parser.cpp
+++ b/TAO/tao/FILE_Parser.cpp
@@ -30,8 +30,8 @@ TAO_FILE_Parser::match_prefix (const char *ior_string) const
CORBA::Object_ptr
TAO_FILE_Parser::parse_string (const char *ior,
- CORBA::ORB_ptr orb,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::ORB_ptr orb
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
// Skip the prefix, we know it is there because this method in only
@@ -54,7 +54,7 @@ TAO_FILE_Parser::parse_string (const char *ior,
CORBA::Object_ptr object = CORBA::Object::_nil ();
ACE_TRY
{
- object = orb->string_to_object (string, ACE_TRY_ENV);
+ object = orb->string_to_object (string TAO_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
reader.alloc ()->free (string);