From 6f91193f0b537d437645ae9e10823a519f547888 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 9 Dec 2020 12:39:57 +0100 Subject: Removed redundant void --- ACE/ace/Base_Thread_Adapter.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ACE/ace/Base_Thread_Adapter.h') diff --git a/ACE/ace/Base_Thread_Adapter.h b/ACE/ace/Base_Thread_Adapter.h index e98df29a228..5680ec8d86c 100644 --- a/ACE/ace/Base_Thread_Adapter.h +++ b/ACE/ace/Base_Thread_Adapter.h @@ -49,9 +49,9 @@ class ACE_Export ACE_OS_Thread_Descriptor { public: /// Get the thread creation flags. - long flags (void) const; + long flags () const; - virtual ~ACE_OS_Thread_Descriptor (void); + virtual ~ACE_OS_Thread_Descriptor (); protected: /// For use by ACE_Thread_Descriptor. @@ -87,14 +87,14 @@ class ACE_Service_Gestalt; class ACE_Export ACE_Base_Thread_Adapter { public: - virtual ~ACE_Base_Thread_Adapter (void); + virtual ~ACE_Base_Thread_Adapter (); /// Virtual method invoked by the thread entry point. - virtual ACE_THR_FUNC_RETURN invoke (void) = 0; + virtual ACE_THR_FUNC_RETURN invoke () = 0; /// Accessor for the C entry point function to the OS thread creation /// routine. - ACE_THR_C_FUNC entry_point (void); + ACE_THR_C_FUNC entry_point (); #ifdef ACE_USES_GPROF /// Accessor to the itimer_ @@ -103,13 +103,13 @@ public: #endif // ACE_USES_PROF /// Invoke the close_log_msg_hook, if it is present - static void close_log_msg (void); + static void close_log_msg (); /// Invoke the sync_log_msg_hook, if it is present static void sync_log_msg (const ACE_TCHAR *prog_name); /// Invoke the thr_desc_log_msg_hook, if it is present - static ACE_OS_Thread_Descriptor *thr_desc_log_msg (void); + static ACE_OS_Thread_Descriptor *thr_desc_log_msg (); protected: /// Constructor. @@ -125,7 +125,7 @@ protected: ); /// Inherit the logging features if the parent thread has an /// ACE_Log_Msg. - void inherit_log_msg (void); + void inherit_log_msg (); private: /// The hooks to inherit and cleanup the Log_Msg attributes -- cgit v1.2.1