From 620dbb9380b85b6972ef2fd9eb868cd5dd5193a1 Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sat, 14 Mar 2020 22:56:33 +0100 Subject: [PATCH] Corrected bugs and warnings in atomic_queue and LeakDetector --- src/external/atomic_queue/atomic_queue.h | 4 ++-- src/sfizz/LeakDetector.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/external/atomic_queue/atomic_queue.h b/src/external/atomic_queue/atomic_queue.h index e7bcf0f2..731d9a11 100644 --- a/src/external/atomic_queue/atomic_queue.h +++ b/src/external/atomic_queue/atomic_queue.h @@ -150,7 +150,7 @@ protected: // The special member functions are not thread-safe. - AtomicQueueCommon() noexcept = default; + AtomicQueueCommon() = default; AtomicQueueCommon(AtomicQueueCommon const& b) noexcept : head_(b.head_.load(X)) @@ -417,7 +417,7 @@ class AtomicQueue2 : public AtomicQueueCommon