diff options
-rw-r--r-- | TAO/ChangeLog | 6 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/OBV/Supports/Supports_Test_impl.cpp | 26 |
3 files changed, 20 insertions, 14 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index a7e95e7ab1f..6e9a5711910 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,9 @@ +Sun Oct 19 18:25:20 2003 Venkita Subramonian <venkita@cs.wustl.edu> + + * orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp: + * tests/OBV/Supports/Supports_Test_impl.cpp: Fixed unused + ACE_ENV_ARG warnings. + Sun Oct 19 17:11:21 2003 Venkita Subramonian <venkita@cs.wustl.edu> * orbsvcs/FTRT_Event_Service/Readme: diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp index c846cd4558b..4997d5e53d1 100644 --- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp +++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/ForwardCtrlServerInterceptor.cpp @@ -122,7 +122,7 @@ void ForwardCtrlServerInterceptor::receive_request (PortableInterceptor::ServerR void ForwardCtrlServerInterceptor::receive_request_service_contexts ( PortableInterceptor::ServerRequestInfo_ptr - ACE_ENV_ARG_DECL) + ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException, PortableInterceptor::ForwardRequest)) { diff --git a/TAO/tests/OBV/Supports/Supports_Test_impl.cpp b/TAO/tests/OBV/Supports/Supports_Test_impl.cpp index 08263a995cf..0953d927c0a 100644 --- a/TAO/tests/OBV/Supports/Supports_Test_impl.cpp +++ b/TAO/tests/OBV/Supports/Supports_Test_impl.cpp @@ -26,7 +26,7 @@ vt_graph_impl::vt_graph_impl (int num_nodes ACE_ENV_ARG_DECL) } // Get the number of nodes in the vt_graph. -CORBA::Long vt_graph_impl::size (ACE_ENV_SINGLE_ARG_DECL) +CORBA::Long vt_graph_impl::size (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { return nodes_ ().length (); @@ -34,7 +34,7 @@ CORBA::Long vt_graph_impl::size (ACE_ENV_SINGLE_ARG_DECL) // Add a node to the graph with no edges. void -vt_graph_impl::add_node (const char * name ACE_ENV_ARG_DECL) +vt_graph_impl::add_node (const char * name ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { Supports_Test::Node * new_node = 0; @@ -45,7 +45,7 @@ vt_graph_impl::add_node (const char * name ACE_ENV_ARG_DECL) // Print out information about each node. void -vt_graph_impl::print (ACE_ENV_SINGLE_ARG_DECL) +vt_graph_impl::print (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { cout << "Printing graph data..." << endl; @@ -181,12 +181,12 @@ test_impl::pass_vt_graph_inout ( } void -test_impl::start (ACE_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) +test_impl::start (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { } void -test_impl::finish (ACE_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) +test_impl::finish (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { this->_remove_ref (); } @@ -201,15 +201,15 @@ node_impl::node_impl (void) // Initialize state. node_impl::node_impl (const char * name) { - name_ (name); - weight_ (0); - degree_ (0); - neighbors_ ().length (0); + name_ (name); + weight_ (0); + degree_ (0); + neighbors_ ().length (0); } // Add an edge from this node to neighbor. void -node_impl::add_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL) +node_impl::add_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { degree_ (degree_ () + 1); @@ -221,7 +221,7 @@ node_impl::add_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL) // Remove the edge from this node to neighbor. void -node_impl::remove_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL) +node_impl::remove_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { for (unsigned int i = 0; i < neighbors_ ().length (); i++) @@ -234,14 +234,14 @@ node_impl::remove_edge (Supports_Test::Node * neighbor ACE_ENV_ARG_DECL) } void -node_impl::change_weight (CORBA::Long new_weight ACE_ENV_ARG_DECL) +node_impl::change_weight (CORBA::Long new_weight ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { weight_ (new_weight); } void -node_impl::print (ACE_ENV_SINGLE_ARG_DECL) +node_impl::print (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { cout << " Name: " << name_ () << endl; |