Skip to content

Commit 74d3e8d

Browse files
authored
Don't initialize atomic_flag with 0. (#1093)
1 parent d4fb1cf commit 74d3e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/src/pplx/pplx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace details
2727
class _Spin_lock
2828
{
2929
public:
30-
_Spin_lock() : _M_lock(0) {}
30+
_Spin_lock() : _M_lock() {}
3131

3232
void lock()
3333
{

0 commit comments

Comments
 (0)