Skip to content

Commit

Permalink
Don't initialize atomic_flag with 0. (#1093)
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyONeal committed Mar 28, 2019
1 parent d4fb1cf commit 74d3e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Release/src/pplx/pplx.cpp
Expand Up @@ -27,7 +27,7 @@ namespace details
class _Spin_lock
{
public:
_Spin_lock() : _M_lock(0) {}
_Spin_lock() : _M_lock() {}

void lock()
{
Expand Down

0 comments on commit 74d3e8d

Please sign in to comment.