diff options
| author | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
|---|---|---|
| committer | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
| commit | 3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch) | |
| tree | 379c29e09bf55597fe6740cd163478cd1204a181 /TAO/performance-tests/Pluggable/PP_Test_Server.cpp | |
| parent | fe03724176dcfd20e0f9a6e493198469242be6b6 (diff) | |
| download | ATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz | |
Remove obsolescent (void) in functions with no parameters
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 ()); |
