ATOMIC_FLAG_INIT

ATOMIC_FLAG_INIT

Defined in header <atomic>
#define ATOMIC_FLAG_INIT /* implementation-defined */

Defines the expression which can be used to initialize std::atomic_flag to clear (false) state with the statement std::atomic_flag v = ATOMIC_FLAG_INIT;. It is unspecified if it can be used with other initialization contexts.

If