1
¿Por qué std :: atomic constructor se comporta de manera diferente en C ++ 14 y C ++ 17?
Estoy trabajando en un proyecto con C ++ 11 e intenté seguir el código #include <atomic> struct A { std::atomic_int idx = 1; }; int main() { return 0; } Me sale el error del compilador error: use of deleted function 'std::__atomic_base<_IntTp>::__atomic_base(const std::__atomic_base<_IntTp>&) [with _ITp = int]' std::atomic_int idx = …