summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp b/TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp
index 069f2f15399..ee6d0e6ea32 100644
--- a/TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp
+++ b/TAO/orbsvcs/tests/ImplRepo/oneway/Test_i.cpp
@@ -3,7 +3,7 @@
#include "Test_i.h"
#include "ace/OS_NS_unistd.h"
-Test_i::Test_i (void)
+Test_i::Test_i ()
: count_ (0)
{
}
@@ -13,14 +13,14 @@ Test_i::~Test_i ()
}
void
-Test_i::foo (void)
+Test_i::foo ()
{
ACE_DEBUG ((LM_DEBUG,"foo called\n"));
++this->count_;
}
CORBA::Short
-Test_i::get_call_count (void)
+Test_i::get_call_count ()
{
CORBA::Short r = this->count_;
this->count_ = 0;