diff options
Diffstat (limited to 'TAO/tests/Timeout')
-rw-r--r-- | TAO/tests/Timeout/client.cpp | 5 | ||||
-rw-r--r-- | TAO/tests/Timeout/test_i.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Timeout/test_i.h | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/TAO/tests/Timeout/client.cpp b/TAO/tests/Timeout/client.cpp index 6faa56e1516..463a4e63837 100644 --- a/TAO/tests/Timeout/client.cpp +++ b/TAO/tests/Timeout/client.cpp @@ -165,7 +165,6 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[]) - ACE_DEBUG ((LM_DEBUG, "client(%P) Set the ORB policies\n")); @@ -185,8 +184,6 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[]) - - ACE_DEBUG ((LM_DEBUG, "client(%P) Set the thread policies\n")); @@ -206,8 +203,6 @@ int ACE_TMAIN (int argc, ACE_TCHAR *argv[]) - - ACE_DEBUG ((LM_DEBUG, "client(%P) Use the object policies\n")); send_echo (object1, orb.in (), timeout_server.in (), t); diff --git a/TAO/tests/Timeout/test_i.cpp b/TAO/tests/Timeout/test_i.cpp index d615af9689d..a240a7d9e6c 100644 --- a/TAO/tests/Timeout/test_i.cpp +++ b/TAO/tests/Timeout/test_i.cpp @@ -33,7 +33,7 @@ Simple_Server_i::echo (CORBA::Long x, } void -Simple_Server_i::shutdown (void) +Simple_Server_i::shutdown () { ACE_DEBUG ((LM_DEBUG, "server (%P) Received shutdown request from client\n")); diff --git a/TAO/tests/Timeout/test_i.h b/TAO/tests/Timeout/test_i.h index 32129102136..a175271fcd8 100644 --- a/TAO/tests/Timeout/test_i.h +++ b/TAO/tests/Timeout/test_i.h @@ -29,7 +29,7 @@ public: // = The Simple_Server methods. CORBA::Long echo (CORBA::Long x, CORBA::Long msecs); - void shutdown (void); + void shutdown (); private: /// The ORB |