summaryrefslogtreecommitdiff
path: root/ACE/ace/Thread_Adapter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Thread_Adapter.cpp')
-rw-r--r--ACE/ace/Thread_Adapter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Thread_Adapter.cpp b/ACE/ace/Thread_Adapter.cpp
index 905eefddcac..024827d01a3 100644
--- a/ACE/ace/Thread_Adapter.cpp
+++ b/ACE/ace/Thread_Adapter.cpp
@@ -38,14 +38,14 @@ ACE_Thread_Adapter::ACE_Thread_Adapter (ACE_THR_FUNC user_func,
ACE_OS_TRACE ("ACE_Thread_Adapter::ACE_Thread_Adapter");
}
-ACE_Thread_Adapter::~ACE_Thread_Adapter (void)
+ACE_Thread_Adapter::~ACE_Thread_Adapter ()
{
}
ACE_ALLOC_HOOK_DEFINE(ACE_Thread_Adapter);
ACE_THR_FUNC_RETURN
-ACE_Thread_Adapter::invoke (void)
+ACE_Thread_Adapter::invoke ()
{
// Inherit the logging features if the parent thread has an
// ACE_Log_Msg instance in thread-specific storage.
@@ -97,7 +97,7 @@ ACE_Thread_Adapter::invoke (void)
}
ACE_THR_FUNC_RETURN
-ACE_Thread_Adapter::invoke_i (void)
+ACE_Thread_Adapter::invoke_i ()
{
// Extract the arguments.
ACE_THR_FUNC func = reinterpret_cast<ACE_THR_FUNC> (this->user_func_);