-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c++ keywords not defined (e.g. and, or, ...) #778
Comments
@schroeca yes not supported yet |
Link to description: https://en.m.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#C.2B.2B_operator_synonyms. |
There are two possibilities to solve this:
What are you thinking? |
I will include the iso646.h. That seems to be the easiest solution on this. Thx |
While working on #761, I saw that |
For override and final see #675 |
Oh ok, good to know ! |
Solution is to use |
c++ keywords can not be used in source file --> leads to an parser error
This will crash:
This will work:
The text was updated successfully, but these errors were encountered: