diff --git a/src/syzygy/tbprobe.cpp b/src/syzygy/tbprobe.cpp index b1075b08..87c80676 100644 --- a/src/syzygy/tbprobe.cpp +++ b/src/syzygy/tbprobe.cpp @@ -76,7 +76,7 @@ struct PairsData { // because default one is not compatible with std::atomic_bool. struct Atomic { Atomic() = default; - Atomic(const Atomic& e) : ready(e.ready.load()) {} + Atomic(const Atomic& e) { ready = e.ready.load(); } // MSVC 2013 wants assignment within body std::atomic_bool ready; };