summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow
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/Portable_Interceptors/Request_Interceptor_Flow
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/Portable_Interceptors/Request_Interceptor_Flow')
-rw-r--r--TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/client.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/client.cpp b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/client.cpp
index 795e8033ed1..035b3959bd2 100644
--- a/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/client.cpp
+++ b/TAO/tests/Portable_Interceptors/Request_Interceptor_Flow/client.cpp
@@ -67,11 +67,11 @@ client_test (Test_ptr server)
"operation.\n"));
}
}
- catch (const Test::X& ex)
+ catch (const Test::X&)
{
// Expected exception. Ignore it.
}
- catch (const CORBA::NO_PERMISSION& ex)
+ catch (const CORBA::NO_PERMISSION&)
{
// Expected exception. Ignore it.
}
@@ -84,7 +84,7 @@ client_test (Test_ptr server)
ex.scenario));
throw;
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
ACE_ERROR ((LM_ERROR,
"\nERROR: Exception thrown from client_test() "
@@ -120,11 +120,11 @@ server_test (Test_ptr server)
"operation.\n"));
}
}
- catch (const Test::X& ex)
+ catch (const Test::X&)
{
// Expected exception. Ignore it.
}
- catch (const CORBA::NO_PERMISSION& ex)
+ catch (const CORBA::NO_PERMISSION&)
{
// Expected exception. Ignore it.
}
@@ -137,7 +137,7 @@ server_test (Test_ptr server)
ex.scenario));
throw;
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
ACE_ERROR ((LM_ERROR,
"\nERROR: Exception thrown from server_test() "