std::atomic support in g++ 4.4.3
I am using g++ version 4.4.3 on开发者_JS百科 Ubuntu OS. According to this matrix here it is supposed to support also std::atomic
. Each time I use
#include <atomic>
the compiler gives me an error and says error: atomic: No such file or directory
.
Have you experienced the same problem? I am compiling using the following line
g++ -std=c++0x -Wall myCode.cpp -o myApp</code>
Try #include <cstdatomic>
instead.
精彩评论