clang变量名称的unicode字符

cat test.cpp

#include <iostream>

int main() {
  int à;
}

结果是:

clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
  int à;
      ^
1 error generated.

现在,有没有办法让clang允许unicode变量名?

谢谢!

最佳答案 虽然标准允许这样做,但Clang目前不支持标识符中的UCN(通用字符名称).

点赞