summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-15 21:53:16 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-15 21:53:16 +0000
commitf0a1acd242b0abcf4cc0ec15aec3d508e138dfe5 (patch)
tree1e2b4a793278332d5e9ccaf3ca8e9024febd0aa1 /ace
parent904b4bf24c1bb07f1c220c1b25f19e8879533cad (diff)
downloadATCD-f0a1acd242b0abcf4cc0ec15aec3d508e138dfe5.tar.gz
ChangeLogTag:Mon May 15 14:50:35 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/CORBA_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/CORBA_macros.h b/ace/CORBA_macros.h
index c06df17bd53..67e037e9891 100644
--- a/ace/CORBA_macros.h
+++ b/ace/CORBA_macros.h
@@ -293,11 +293,11 @@
} while (0); \
do \
if (ACE_TRY_ENV.exception () != 0 && ACE_EXCEPTION_NOT_CAUGHT && \
- TYPE::_narrow(ACE_TRY_ENV.exception ()) != 0) \
+ TYPE::_downcast(ACE_TRY_ENV.exception ()) != 0) \
{ \
CORBA::Environment ACE_CAUGHT_ENV = ACE_TRY_ENV;\
ACE_EXCEPTION_NOT_CAUGHT = 0; \
- TYPE &VAR = *TYPE::_narrow (ACE_CAUGHT_ENV.exception ()); \
+ TYPE &VAR = *TYPE::_downcast (ACE_CAUGHT_ENV.exception ()); \
ACE_UNUSED_ARG (VAR); \
ACE_TRY_ENV.clear ();