remove ATOMIC_FLAG_INIT: depreciated in C++20 and warns in clang-14

This commit is contained in:
Brendan Cox 2022-03-30 21:45:48 -07:00
parent 5e262fba85
commit 87fff8b2d3

View File

@ -220,7 +220,7 @@ static void incrementProfileEventsBlock(Block & dst, const Block & src)
}
std::atomic_flag exit_on_signal = ATOMIC_FLAG_INIT;
std::atomic_flag exit_on_signal;
class QueryInterruptHandler : private boost::noncopyable
{