#include <cstdatomic> "no such file" in ubuntu
c++
Solution
The include should be `#include <atomic>`
Problem
when compile with g++ -std=c++0x -Wall test.cc -o hello, output fatal error: cstdatomic No such file or directly Where is missing?
c++
The include should be `#include <atomic>`
when compile with g++ -std=c++0x -Wall test.cc -o hello, output fatal error: cstdatomic No such file or directly Where is missing?