summaryrefslogtreecommitdiff
path: root/TAO/tao/Exception.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-06 05:31:12 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-06 05:31:12 +0000
commit04083db794bd12b187bfda4dfcaa009256fd823a (patch)
tree1ffe7ee6c6ad40b2c91c430489d3de24b2a4bbf8 /TAO/tao/Exception.cpp
parent083a2168714bdbb769436248370f6f9b607cc17b (diff)
downloadATCD-04083db794bd12b187bfda4dfcaa009256fd823a.tar.gz
.
Diffstat (limited to 'TAO/tao/Exception.cpp')
-rw-r--r--TAO/tao/Exception.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index e86b406fd85..591f52a908f 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -1,10 +1,5 @@
// $Id$
-// Copyright 1994-1995 by Sun Microsystems Inc.
-// All Rights Reserved
-//
-// ORB: Exception handling support
-//
// THREADING NOTE: calling thread handles mutual exclusion policy
// on all of these data structures.
@@ -726,12 +721,12 @@ CORBA_ExceptionList::add_consume (CORBA::TypeCode_ptr tc)
}
CORBA::TypeCode_ptr
-CORBA_ExceptionList::item (CORBA::ULong index,
+CORBA_ExceptionList::item (CORBA::ULong slot,
CORBA::Environment &TAO_IN_ENV)
{
CORBA::TypeCode_ptr *tc;
TAO_IN_ENV.clear ();
- if (this->tc_list_.get (tc, index) == -1)
+ if (this->tc_list_.get (tc, slot) == -1)
TAO_THROW_RETURN (CORBA::TypeCode::Bounds (), 0);
else
{