summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/Forwarding/test_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/POA/Forwarding/test_i.cpp
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tests/POA/Forwarding/test_i.cpp')
-rw-r--r--TAO/tests/POA/Forwarding/test_i.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/POA/Forwarding/test_i.cpp b/TAO/tests/POA/Forwarding/test_i.cpp
index 23134929959..dd47e8a2326 100644
--- a/TAO/tests/POA/Forwarding/test_i.cpp
+++ b/TAO/tests/POA/Forwarding/test_i.cpp
@@ -14,13 +14,13 @@ test_i::test_i (CORBA::ORB_ptr orb,
}
CORBA::Long
-test_i::doit (void)
+test_i::doit ()
{
return this->value_++;
}
void
-test_i::forward (void)
+test_i::forward ()
{
this->activator_.forward_requests ();
@@ -32,13 +32,13 @@ test_i::forward (void)
void
-test_i::shutdown (void)
+test_i::shutdown ()
{
this->orb_->shutdown (false);
}
PortableServer::POA_ptr
-test_i::_default_POA (void)
+test_i::_default_POA ()
{
return PortableServer::POA::_duplicate (this->poa_.in ());
}