diff options
Diffstat (limited to 'TAO/performance-tests/Pluggable/PP_Test_Server.cpp')
-rw-r--r-- | TAO/performance-tests/Pluggable/PP_Test_Server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/performance-tests/Pluggable/PP_Test_Server.cpp b/TAO/performance-tests/Pluggable/PP_Test_Server.cpp index a8121b86a85..0fc81a5e56b 100644 --- a/TAO/performance-tests/Pluggable/PP_Test_Server.cpp +++ b/TAO/performance-tests/Pluggable/PP_Test_Server.cpp @@ -3,13 +3,13 @@ #include "tao/debug.h" #include "ace/OS_NS_stdio.h" -PP_Test_Server::PP_Test_Server (void) +PP_Test_Server::PP_Test_Server () : ior_output_file_ (0) { } int -PP_Test_Server::parse_args (void) +PP_Test_Server::parse_args () { ACE_Get_Opt get_opts (argc_, argv_, ACE_TEXT("do:")); int c; @@ -103,7 +103,7 @@ PP_Test_Server::run () return 0; } -PP_Test_Server::~PP_Test_Server (void) +PP_Test_Server::~PP_Test_Server () { if (this->factory_id_.in ()) this->orb_manager_.deactivate_under_child_poa (this->factory_id_.in ()); |