Alexander A. Klimov 48b5ec569b Consistently use Atomic, and not std::atomic
Atomic enforces usage of its only safe constructor,
in contrast to std::atomic.

"The default-initialized std::atomic<T> does not contain
a T object, and its only valid uses are destruction and
initialization by std::atomic_init, see LWG issue 2334."
 -- https://en.cppreference.com/w/cpp/atomic/atomic/atomic
2025-05-28 16:48:10 +02:00
..