summaryrefslogtreecommitdiff
path: root/TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp')
-rw-r--r--TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp b/TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp
index eca9c5e79db..12bf846557a 100644
--- a/TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp
+++ b/TAO/examples/CSD_Strategy/ThreadPool2/Foo_i.cpp
@@ -20,7 +20,7 @@ Foo_i::~Foo_i()
void
-Foo_i::op1(void)
+Foo_i::op1()
{
++this->count_op1_;
// Sleep for 10 milliseconds (10,000 microseconds)
@@ -37,7 +37,7 @@ Foo_i::op2(CORBA::Long value)
CORBA::Long
-Foo_i::op3(void)
+Foo_i::op3()
{
++this->count_op3_;
return this->value_;
@@ -63,14 +63,14 @@ Foo_i::op4(CORBA::Long value)
void
-Foo_i::op5(void)
+Foo_i::op5()
{
++this->count_op5_;
}
void
-Foo_i::done(void)
+Foo_i::done()
{
this->mgr_->client_done();
}