summaryrefslogtreecommitdiff
path: root/TAO/tests/RTCORBA/Linear_Priority/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/RTCORBA/Linear_Priority/server.cpp')
-rw-r--r--TAO/tests/RTCORBA/Linear_Priority/server.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/RTCORBA/Linear_Priority/server.cpp b/TAO/tests/RTCORBA/Linear_Priority/server.cpp
index 5bb397b130c..65afe698d1f 100644
--- a/TAO/tests/RTCORBA/Linear_Priority/server.cpp
+++ b/TAO/tests/RTCORBA/Linear_Priority/server.cpp
@@ -13,13 +13,13 @@ public:
test_i (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa);
- void method (void);
+ void method ();
//FUZZ: disable check_for_lack_ACE_OS
- void shutdown (void);
+ void shutdown ();
//FUZZ: enable check_for_lack_ACE_OS
- PortableServer::POA_ptr _default_POA (void);
+ PortableServer::POA_ptr _default_POA ();
private:
CORBA::ORB_var orb_;
@@ -34,14 +34,14 @@ test_i::test_i (CORBA::ORB_ptr orb,
}
void
-test_i::method (void)
+test_i::method ()
{
ACE_DEBUG ((LM_DEBUG,
"test_i::method\n"));
}
void
-test_i::shutdown (void)
+test_i::shutdown ()
{
ACE_DEBUG ((LM_DEBUG,
"test_i::shutdown\n"));
@@ -50,7 +50,7 @@ test_i::shutdown (void)
}
PortableServer::POA_ptr
-test_i::_default_POA (void)
+test_i::_default_POA ()
{
return PortableServer::POA::_duplicate (this->poa_.in ());
}
@@ -140,7 +140,7 @@ public:
Task (ACE_Thread_Manager &thread_manager,
CORBA::ORB_ptr orb);
- int svc (void);
+ int svc ();
CORBA::ORB_var orb_;
};
@@ -153,7 +153,7 @@ Task::Task (ACE_Thread_Manager &thread_manager,
}
int
-Task::svc (void)
+Task::svc ()
{
try
{