summaryrefslogtreecommitdiff
path: root/TAO/tests/CallbackTest
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-26 18:25:17 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-26 18:25:17 +0000
commitda0eecb9aeca0a49c2f1af5981644749b879d3a5 (patch)
treedd179c11d0ebdcf608e9d63b10138430254912da /TAO/tests/CallbackTest
parent391b189530b42b451e033590b689fa4357cfb06e (diff)
downloadATCD-da0eecb9aeca0a49c2f1af5981644749b879d3a5.tar.gz
ChangeLogTag: Fri Jan 26 18:21:17 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tests/CallbackTest')
-rw-r--r--TAO/tests/CallbackTest/Service.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/CallbackTest/Service.cpp b/TAO/tests/CallbackTest/Service.cpp
index 191c432fbfa..f1d7494b043 100644
--- a/TAO/tests/CallbackTest/Service.cpp
+++ b/TAO/tests/CallbackTest/Service.cpp
@@ -44,7 +44,7 @@ Service::run_test (Test::Callback_ptr callback)
{
callback->shutdown ();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
ACE_DEBUG ((LM_ERROR, "(%P|%t) - Service, client shutdown FAILED\n"));
}
@@ -70,7 +70,7 @@ Service::call_are_you_there (Test::Callback_ptr callback)
{
(void) callback->are_you_there (out_str);
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
exception_count++;
}
@@ -94,7 +94,7 @@ Service::call_test_oneway (Test::Callback_ptr callback)
{
(void) callback->test_oneway ();
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
exception_count++;
}