I created a standard c++ library project and I tried to include <tuple>
but it doesn't seem to be included as a top level header, instead I still need to include <tr1/tuple>
. The llvm compiler dialect is set to -std=c++11
.
Am I correct in assuming that even though xcode 4.4 has a c++11 compliant compiler it doesn't ship with a C++11 compliant standard library yet ?
This question might be related to this one.