I am trying to pick up the basics of C ++ 11. I have Xcode 4.2 on my mac that uses the LLVM 3.0 compiler. From what I read, it should support the original string literals (ie R"(...)"
), but when I try to compile something with them, it hurts me. I installed it for C ++ 0x (I included -std=c++0x
and the libC ++ library), and I know that it works with other C ++ 0x functions, such as the for-loop range.
Is there anything that I am missing here?
source share