Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能够运行 C++11 的基本结构,例如 CLang 3.3 中的自动变量
但是当涉及到 assignment_initialization 时,例如
vector<int> v={1,2};
我从 CLang++ 得到错误,说我应该包括
<initializer_list>
但是当我使用它时,它说找不到“initializer_list”的文件
任何解决方法或任何解决方案?
对于 C++11 库功能,您需要 libc++,Apple 仅在 10.7 及更高版本中支持。