diff options
-rw-r--r-- | TAO/ChangeLog | 6 | ||||
-rw-r--r-- | TAO/tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/RTCORBA/common_args.cpp | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index d268ce173e9..5ed9baefaed 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,9 @@ +Fri Jul 19 23:44:29 2002 Balachandran Natarajan <bala@cs.wustl.edu> + + * tests/RTCORBA/common_args.cpp: + * tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp: Fixed + compile errors in build where exceptions are turned off. + Thu Jul 18 08:46:16 2002 Chad Elliott <elliott_c@ociweb.com> * orbsvcs/orbsvcs/AV.mpc: diff --git a/TAO/tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp b/TAO/tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp index fc750490732..9d66f688430 100644 --- a/TAO/tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp +++ b/TAO/tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp @@ -349,7 +349,7 @@ Client::set_priority_bands (int debug policies, debug ACE_ENV_ARG_PARAMETER); - ACE_TRY_CHECK; + ACE_CHECK; if (result != 0) { ACE_ERROR ((LM_ERROR, diff --git a/TAO/tests/RTCORBA/common_args.cpp b/TAO/tests/RTCORBA/common_args.cpp index 1555fbe3951..27127bdbb06 100644 --- a/TAO/tests/RTCORBA/common_args.cpp +++ b/TAO/tests/RTCORBA/common_args.cpp @@ -283,7 +283,7 @@ get_protocols (const char *test_type, CORBA::Policy_var protocol_policy = rt_orb->create_client_protocol_policy (protocols ACE_ENV_ARG_PARAMETER); - ACE_CHECK; + ACE_CHECK_RETURN (-1); policies.length (policies.length () + 1); policies[policies.length () - 1] = |