We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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++ community plugin 0.9.1
Current implementation of preprocessing is limited to Java long data type (C++ signed long long).
Example: #define UINT64_MAX 0xffffffffffffffffu
#define UINT64_MAX 0xffffffffffffffffu
Error message:
17:26:23.661 WARN - Cannot decode the number '0xffffffffffffffffu' falling back to max long (9223372036854775807) instead
sonar-cxx / cxx-squid / src / main / java / org / sonar / cxx / preprocessor / ExpressionEvaluator.java evalNumber, line 153, using long => overflow
Bigger change in preprocessor?
The text was updated successfully, but these errors were encountered:
Fixed with 81e3188
Sorry, something went wrong.
guwirth
No branches or pull requests
C++ community plugin 0.9.1
Current implementation of preprocessing is limited to Java long data type (C++ signed long long).
Example:
#define UINT64_MAX 0xffffffffffffffffu
Error message:
sonar-cxx / cxx-squid / src / main / java / org / sonar / cxx / preprocessor / ExpressionEvaluator.java
evalNumber, line 153, using long => overflow
Bigger change in preprocessor?
The text was updated successfully, but these errors were encountered: