summaryrefslogtreecommitdiff
path: root/TAO/tao/Marshal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Marshal.cpp')
-rw-r--r--TAO/tao/Marshal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Marshal.cpp b/TAO/tao/Marshal.cpp
index 97675134fab..fd201da3141 100644
--- a/TAO/tao/Marshal.cpp
+++ b/TAO/tao/Marshal.cpp
@@ -82,11 +82,11 @@ TAO_Marshal_Factory::~TAO_Marshal_Factory (void)
// the kind of the typecode.
TAO_Marshal_Object *
TAO_Marshal_Factory::make_marshal_object (CORBA::TypeCode_ptr tc,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &TAO_IN_ENV)
{
if (tc && tc->kind_ >= 0 && tc->kind_ < CORBA::TC_KIND_COUNT)
return this->mobj_table_[tc->kind_].obj_;
- ACE_THROW_RETURN (CORBA::BAD_TYPECODE (), 0);
+ TAO_THROW_RETURN (CORBA::BAD_TYPECODE (), 0);
}