From a676ce13c6d20009677ddd908ee433a3974d04b0 Mon Sep 17 00:00:00 2001 From: "Billy O'Neal (VC LIBS)" Date: Thu, 28 Mar 2019 12:27:33 -0700 Subject: [PATCH] Don't initialize atomic_flag with 0. --- Release/src/pplx/pplx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release/src/pplx/pplx.cpp b/Release/src/pplx/pplx.cpp index 618c02b908..cdb28b3693 100644 --- a/Release/src/pplx/pplx.cpp +++ b/Release/src/pplx/pplx.cpp @@ -27,7 +27,7 @@ namespace details class _Spin_lock { public: - _Spin_lock() : _M_lock(0) {} + _Spin_lock() : _M_lock() {} void lock() {