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/Event_Base.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ACE/ace/Event_Base.h') diff --git a/ACE/ace/Event_Base.h b/ACE/ace/Event_Base.h index a158c5e67fe..aaef456772b 100644 --- a/ACE/ace/Event_Base.h +++ b/ACE/ace/Event_Base.h @@ -40,17 +40,17 @@ class ACE_Export ACE_Event_Base { public: /// Implicitly destroy the event variable. - virtual ~ACE_Event_Base (void); + virtual ~ACE_Event_Base (); /** * Explicitly destroy the event variable. Note that only one thread * should call this method since it doesn't protect against race * conditions. */ - int remove (void); + int remove (); /// Underlying handle to event. - ACE_event_t handle (void) const; + ACE_event_t handle () const; /** * Set the underlying handle to event. Note that this method assumes @@ -70,7 +70,7 @@ public: * sleep till the event becomes signaled * event resets wait() completes. */ - int wait (void); + int wait (); /// Same as wait() above, but this one can be timed /// @a abstime is absolute time-of-day if if @a use_absolute_time @@ -87,7 +87,7 @@ public: * if thread(s) are waiting, wake up one waiting thread and * reset event */ - int signal (void); + int signal (); /** * if MANUAL reset @@ -97,13 +97,13 @@ public: * wakeup one waiting thread (if present) and * reset event */ - int pulse (void); + int pulse (); /// Set to nonsignaled state. - int reset (void); + int reset (); /// Dump the state of an object. - void dump (void) const; + void dump () const; /// Declare the dynamic allocation hooks ACE_ALLOC_HOOK_DECLARE; -- cgit v1.2.1