clang unicode characters for variable name
Posted
by anon
on Stack Overflow
See other posts from Stack Overflow
or by anon
Published on 2010-04-21T22:22:36Z
Indexed on
2010/04/21
22:23 UTC
Read the original article
Hit count: 275
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!
© Stack Overflow or respective owner