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 变量名称?
谢谢!
cat test.cpp
#include <iostream>
int main() {
int à;
}
results in:
clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
int à;
^
1 error generated.
Now, is there a way to get clang to allow unicode variable names?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然标准允许这样做,但 Clang 目前不支持标识符中的 UCN(通用字符名称)。
While this is allowed by the standard, Clang does not currently support UCN (universal character name)s in identifiers.