summaryrefslogtreecommitdiff
path: root/ACE/ace/Null_Barrier.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-09-05 08:22:58 +0200
committerAdam Mitz <mitza@objectcomputing.com>2022-10-03 13:16:58 -0500
commit61a1fbae63918fc59b7d9f2e5b6a902975877078 (patch)
tree2570a6a513c2c54b6a6b9416b7e26cfdb47569da /ACE/ace/Null_Barrier.h
parent8b83b5df37a2bb8c95aa687d0ca799a345fa306e (diff)
downloadATCD-61a1fbae63918fc59b7d9f2e5b6a902975877078.tar.gz
Merge pull request #1912 from knutpett/warning_extra_semi
Remove warnings -Wextra-semi (cherry picked from commit 1bc30d9abfac4b990a8ca25f43c666f28a8d61d2) # Conflicts: # ACE/ace/Null_Barrier.h # ACE/ace/Null_Condition.h # ACE/ace/Refcounted_Auto_Ptr.h
Diffstat (limited to 'ACE/ace/Null_Barrier.h')
-rw-r--r--ACE/ace/Null_Barrier.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Null_Barrier.h b/ACE/ace/Null_Barrier.h
index 50e4e2789ea..7be1409dffa 100644
--- a/ACE/ace/Null_Barrier.h
+++ b/ACE/ace/Null_Barrier.h
@@ -27,17 +27,17 @@ public:
/// Initialize the barrier to synchronize <count> threads.
ACE_Null_Barrier (unsigned int,
const char * = 0,
- void * = 0) {};
+ void * = 0) {}
/// Default dtor.
~ACE_Null_Barrier (void) {};
/// Block the caller until all <count> threads have called <wait> and
/// then allow all the caller threads to continue in parallel.
- int wait (void) { return 0; };
+ int wait () { return 0; }
/// Dump the state of an object.
- void dump (void) const {};
+ void dump () const {}
/// Declare the dynamic allocation hooks.
//ACE_ALLOC_HOOK_DECLARE;