如何让clang能够解析公共枚举类的结构?
access enum class enumeration-identifier [:underlying-type] { enumerator-list } [var];
答案 0 :(得分:2)
适合我。
$ cat main.cpp
enum class Foo { X, Y };
int main() { }
$ c++ --version
Apple clang version 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn)
Target: x86_64-apple-darwin11.4.2
Thread model: posix
$ c++ -std=c++11 main.cpp -o main
$ ./main