summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-24 14:39:21 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-24 14:39:21 +0000
commit23a8702b526ec2d27c30ae09b47b4da529d6b4b1 (patch)
treedb092641833b35d383de2336a7b21e6bab8c5e12 /tests
parentfc32c8b67d906aa746d6e440ac10ec978f282618 (diff)
downloadATCD-23a8702b526ec2d27c30ae09b47b4da529d6b4b1.tar.gz
added ACE_UNUSED_ARG for argc and argv when ACE_HAS_EXCEPTIONS is not defined
Diffstat (limited to 'tests')
-rw-r--r--tests/Reactor_Exceptions_Test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Reactor_Exceptions_Test.cpp b/tests/Reactor_Exceptions_Test.cpp
index 30adb804b0f..bf15fe7fab9 100644
--- a/tests/Reactor_Exceptions_Test.cpp
+++ b/tests/Reactor_Exceptions_Test.cpp
@@ -148,6 +148,8 @@ main (int argc, char *argv[])
ACE_DEBUG ((LM_DEBUG, "(%t) exiting main\n"));
#else
+ ACE_UNUSED_ARG (argc);
+ ACE_UNUSED_ARG (argv);
ACE_ERROR ((LM_ERROR, "C++ exceptions not supported on this platform\n"));
#endif /* ACE_HAS_EXCEPTIONS */