summaryrefslogtreecommitdiff
path: root/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp')
-rw-r--r--TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp b/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
index acb1210811c..7cb44068e63 100644
--- a/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
+++ b/TAO/tests/Nested_Upcall_Crash/Client_Peer.cpp
@@ -31,13 +31,11 @@ void
Client_Peer::callme(Test::Peer_ptr callback,
CORBA::ULong max_depth,
Test::Payload const &)
- ACE_THROW_SPEC((CORBA::SystemException))
{
// ACE_DEBUG ((LM_DEBUG, "Received call, depth = %d\n", max_depth));
if (max_depth > 0)
{
- Test::Peer_var me =
- this->_this();
+ Test::Peer_var me = this->_this ();
Test::Payload return_data;
@@ -47,7 +45,6 @@ Client_Peer::callme(Test::Peer_ptr callback,
void
Client_Peer::crash(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
Crasher * crasher = new Crasher;
@@ -58,7 +55,6 @@ Client_Peer::crash(void)
void
Client_Peer::noop(void)
- ACE_THROW_SPEC((CORBA::SystemException))
{
}