summaryrefslogtreecommitdiff
path: root/TAO/tests/Native_Exceptions/test_i.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-12 13:46:38 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-08-12 13:46:38 +0000
commit2eb1b488e19d9a5d04bbc94885797c1481150a07 (patch)
treeef68ec063c549b34532a4237d67684407bf107ee /TAO/tests/Native_Exceptions/test_i.cpp
parent0f421a5cbfa9b24dc1c5d87e60118981426d91eb (diff)
downloadATCD-2eb1b488e19d9a5d04bbc94885797c1481150a07.tar.gz
ChangeLogTag: Sun Aug 12 08:46:01 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Native_Exceptions/test_i.cpp')
-rw-r--r--TAO/tests/Native_Exceptions/test_i.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/TAO/tests/Native_Exceptions/test_i.cpp b/TAO/tests/Native_Exceptions/test_i.cpp
index 2b0df042b9c..6f97c7e937b 100644
--- a/TAO/tests/Native_Exceptions/test_i.cpp
+++ b/TAO/tests/Native_Exceptions/test_i.cpp
@@ -19,13 +19,11 @@ CORBA::Long
Simple_Server_i::test_raise (CORBA::Long x)
ACE_THROW_SPEC ((Simple_Server::Failure))
{
+ ACE_UNUSED_ARG (x);
throw Simple_Server::Failure ();
# if defined (WIN32) || defined (__HP_aCC)
- // Make HP-UX's aCC happy
return x;
-#else /*WIN32 & HP */
- ACE_UNUSED_ARG (x);
#endif /*WIN32 & HP */
}