summaryrefslogtreecommitdiff
path: root/TAO/tests/Muxed_GIOP_Versions
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/Muxed_GIOP_Versions
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/Muxed_GIOP_Versions')
-rw-r--r--TAO/tests/Muxed_GIOP_Versions/client.cpp4
-rw-r--r--TAO/tests/Muxed_GIOP_Versions/server.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Muxed_GIOP_Versions/client.cpp b/TAO/tests/Muxed_GIOP_Versions/client.cpp
index 6a267a9487c..31b4cc6aa38 100644
--- a/TAO/tests/Muxed_GIOP_Versions/client.cpp
+++ b/TAO/tests/Muxed_GIOP_Versions/client.cpp
@@ -148,7 +148,7 @@ main (int argc, char *argv[])
}
}
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
// ACE_DEBUG ((LM_DEBUG, "caught exception\n", corbaloc_arg));
}
@@ -199,7 +199,7 @@ Client::validate_connection (void)
{
this->server_->test_method (j);
}
- catch (const CORBA::Exception& ex){}
+ catch (const CORBA::Exception&){}
}
}
diff --git a/TAO/tests/Muxed_GIOP_Versions/server.cpp b/TAO/tests/Muxed_GIOP_Versions/server.cpp
index 8e1279e4f2c..8cf28f45059 100644
--- a/TAO/tests/Muxed_GIOP_Versions/server.cpp
+++ b/TAO/tests/Muxed_GIOP_Versions/server.cpp
@@ -219,7 +219,7 @@ Worker::svc (void)
ACE_Time_Value tv (140, 0);
this->orb_->run (tv);
}
- catch (const CORBA::Exception& ex)
+ catch (const CORBA::Exception&)
{
}
return 0;
@@ -249,7 +249,7 @@ SelfClient::validate_connection (void)
{
this->server_->test_method (j);
}
- catch (const CORBA::Exception& ex){}
+ catch (const CORBA::Exception&){}
}
}