diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2022-12-12 16:02:27 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2022-12-12 16:02:27 +0100 |
commit | 37a525baec16f7caaa2252394041051c949f301d (patch) | |
tree | d02343e8d3b24655b082b117d63879ff83e89e7f /TAO/tests/NestedUpcall/MT_Client_Test/server.cpp | |
parent | 87e4cdb2c157eb359d394c40115e0e6a91c68920 (diff) | |
parent | 7f58353152673a611a86843b1db6f9453675d087 (diff) | |
download | ATCD-37a525baec16f7caaa2252394041051c949f301d.tar.gz |
Fixed merge conflicts
Diffstat (limited to 'TAO/tests/NestedUpcall/MT_Client_Test/server.cpp')
-rw-r--r-- | TAO/tests/NestedUpcall/MT_Client_Test/server.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp b/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp index 8c4ce3fcc17..9609b0bf950 100644 --- a/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp +++ b/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp @@ -32,7 +32,7 @@ public: #endif } - ~TestShutdown (void) + ~TestShutdown () { #if !defined(ACE_LACKS_UNIX_SIGNALS) this->shutdown_.remove_handler (SIGTERM); @@ -54,13 +54,13 @@ private: ACE_Sig_Handler shutdown_; }; -MT_Object_Server::MT_Object_Server (void) +MT_Object_Server::MT_Object_Server () : ior_output_file_ (0) { } int -MT_Object_Server::parse_args (void) +MT_Object_Server::parse_args () { ACE_Get_Opt get_opts (argc_, argv_, ACE_TEXT("do:m")); int c; @@ -132,7 +132,7 @@ MT_Object_Server::init (int argc, ACE_TCHAR** argv) int -MT_Object_Server::run (void) +MT_Object_Server::run () { CORBA::ORB_var orb = this->orb_manager_.orb (); TestShutdown killer (orb.in ()); @@ -146,7 +146,7 @@ MT_Object_Server::run (void) return 0; } -MT_Object_Server::~MT_Object_Server (void) +MT_Object_Server::~MT_Object_Server () { } |