1
Чому std :: атомний конструктор поводиться по-різному в C ++ 14 і C ++ 17
Я працюю над проектом на C ++ 11 і спробував наступний код #include <atomic> struct A { std::atomic_int idx = 1; }; int main() { return 0; } Я отримую помилку компілятора error: use of deleted function 'std::__atomic_base<_IntTp>::__atomic_base(const std::__atomic_base<_IntTp>&) [with _ITp = int]' std::atomic_int idx = 1; ^ Той самий …