diff options
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 4 | ||||
-rw-r--r-- | TAO/tests/Native_Exceptions/test_i.cpp | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index be1f347c048..43854b43dfd 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,7 @@ +Sat Aug 11 08:14:59 2001 Balachandran Natarajan <bala@cs.wustl.edu> + + * tests/Native_Exceptions/test_i.cpp: Fixed warning with KCC. + Fri Aug 10 10:59:42 2001 Chad Elliott <elliott_c@ociweb.com> * tests/Native_Exceptions/test_i.cpp: diff --git a/TAO/tests/Native_Exceptions/test_i.cpp b/TAO/tests/Native_Exceptions/test_i.cpp index ca7ddf1416b..62d188ff01f 100644 --- a/TAO/tests/Native_Exceptions/test_i.cpp +++ b/TAO/tests/Native_Exceptions/test_i.cpp @@ -21,8 +21,10 @@ Simple_Server_i::test_raise (CORBA::Long x) { throw Simple_Server::Failure (); +# if defined (WIN32) || defined (__HP_aCC) // Make HP-UX's aCC happy return x; +#endif /*WIN32 & HP */ } void |