Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
std::map<std::string, int> m = {
    {"Marc G.", 123},
    {"Zulija N.", 456},
    {"John D.", 369}
};

In Xcode I have C++ Language Dialect set to "C++0x [-std=c++0x]" and C++ Standard Library set to "libc++ LLVM C++ Standard library with C++0X Support"

Do I need to set something else?

share|improve this question
Remove the =, and say std::string. – Kerrek SB Jan 19 '12 at 3:36
still not working. I was using namespace std anyways. Same error. – joels Jan 19 '12 at 4:25
Syntax seems correct with or without the '=' (assuming you brought std::string in scope of course). – Firoze Lafeer Jan 19 '12 at 4:25

1 Answer

up vote 13 down vote accepted

C++11 Initializer Lists are not yet supported as of Clang 3.0

See the implementation status here: Clang C++11 implementation status

(Your syntax looks correct if only the compiler supported this feature)

share|improve this answer
Oh, I thought it depended on the library used. I guess it makes more sense that the compiler needs to support it. – joels Jan 19 '12 at 4:44
You might try using GNU++11 (-std=gnu++11). Pretty sure it supports initializer lists. – rgbrgb Nov 26 '12 at 0:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.