summaryrefslogtreecommitdiff
path: root/TAO/tests/InterOp-Naming/Server_i.cpp
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /TAO/tests/InterOp-Naming/Server_i.cpp
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tests/InterOp-Naming/Server_i.cpp')
-rw-r--r--TAO/tests/InterOp-Naming/Server_i.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/InterOp-Naming/Server_i.cpp b/TAO/tests/InterOp-Naming/Server_i.cpp
index a77c39dc331..d1dca7f3a99 100644
--- a/TAO/tests/InterOp-Naming/Server_i.cpp
+++ b/TAO/tests/InterOp-Naming/Server_i.cpp
@@ -4,20 +4,20 @@
#include "ace/OS_NS_stdio.h"
// Constructor.
-Server_i::Server_i (void)
+Server_i::Server_i ()
: ior_output_file_ (0),
ins_ (0)
{
}
// Destructor.
-Server_i::~Server_i (void)
+Server_i::~Server_i ()
{
}
// Parse the command-line arguments and set options.
int
-Server_i::parse_args (void)
+Server_i::parse_args ()
{
ACE_Get_Opt get_opts (this->argc_, this->argv_, ACE_TEXT("do:ni:"));
int c = 0;
@@ -153,7 +153,7 @@ Server_i::init (int argc,
}
int
-Server_i::run (void)
+Server_i::run ()
{
// Run the main event loop for the ORB.
int result = this->orb_manager_.run ();