summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhangw <zhangw@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-03-02 21:01:41 +0000
committerzhangw <zhangw@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-03-02 21:01:41 +0000
commit89456cd2af99315bf6afc48daa02f6a6129cae10 (patch)
tree917c695a8fd939f29bf6c5fd5dd2a2b3475cfa48
parent124668dd51fdfcb8e943de8751eb2fb771dc98d6 (diff)
downloadATCD-89456cd2af99315bf6afc48daa02f6a6129cae10.tar.gz
Fri Mar 2 21:00:23 UTC 2007 Wallace Zhang <zhang_w@ociweb.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/DSI_AMI_Gateway/test_dsi.cpp4
-rw-r--r--TAO/tests/DSI_Gateway/test_dsi.cpp4
3 files changed, 9 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index eaa134f4c70..0191af64811 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Mar 2 21:00:23 UTC 2007 Wallace Zhang <zhang_w@ociweb.com>
+
+ * tests/DSI_AMI_Gateway/test_dsi.cpp:
+ * tests/DSI_Gateway/test_dsi.cpp:
+
+ Fixed an unused argument warning.
+
Fri Mar 2 20:31:11 UTC 2007 Wallace Zhang <zhang_w@ociweb.com>
* tao/DynamicInterface/AMH_DSI_Response_Handler.h:
diff --git a/TAO/tests/DSI_AMI_Gateway/test_dsi.cpp b/TAO/tests/DSI_AMI_Gateway/test_dsi.cpp
index a5a066ea0d9..43b842ca8d9 100644
--- a/TAO/tests/DSI_AMI_Gateway/test_dsi.cpp
+++ b/TAO/tests/DSI_AMI_Gateway/test_dsi.cpp
@@ -112,10 +112,8 @@ DSI_Simple_Server::invoke (CORBA::ServerRequest_ptr request,
target_request->sendc (rh_ptr);
}
- catch (const CORBA::UNKNOWN& ex)
+ catch (const CORBA::UNKNOWN&)
{
- ACE_UNUSED_ARG (ex);
-
// Outgoing reply must have the same byte order as the incoming one.
request->_tao_reply_byte_order (target_request->_tao_byte_order ());
diff --git a/TAO/tests/DSI_Gateway/test_dsi.cpp b/TAO/tests/DSI_Gateway/test_dsi.cpp
index 349cb62d18f..39c6e6ded6e 100644
--- a/TAO/tests/DSI_Gateway/test_dsi.cpp
+++ b/TAO/tests/DSI_Gateway/test_dsi.cpp
@@ -39,10 +39,8 @@ DSI_Simple_Server::invoke (CORBA::ServerRequest_ptr request)
// Updates the byte order state, if necessary.
target_request->invoke ();
}
- catch (const CORBA::UNKNOWN& ex)
+ catch (const CORBA::UNKNOWN&)
{
- ACE_UNUSED_ARG (ex);
-
// Outgoing reply must have the same byte order as the incoming one.
request->_tao_reply_byte_order (target_request->_tao_byte_order ());