std::atomic support in g++ 4.4.3
atomic, c++11, g++
Solution
Try `#include <cstdatomic>` instead.
Problem
I am using g++ version 4.4.3 on 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> ```