Clang解析公共枚举类

时间:2012-10-31 10:09:32

标签: c++ parsing clang

如何让clang能够解析公共枚举类的结构?

access enum class enumeration-identifier [:underlying-type] { enumerator-list } [var];

1 个答案:

答案 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