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
Hello, Tool started to support hex (0x) and binary numbers (0b) starting with the latest release. However, I found a bug.
"(0x0)" --> Parse error: Invalid integer literal '0x0)' "(0x0 )" --> Successfully calculated
This bug causes trouble when functions are used. E.g. "MyFunction(0xABC)"
The text was updated successfully, but these errors were encountered:
Fix issue when parsing hexadecimal and binary literals.
363e711
Fix dynamicexpresso#241
Fix issue when parsing hexadecimal and binary literals. (#242)
42132ad
Fix #241
metoule
Successfully merging a pull request may close this issue.
Hello,
Tool started to support hex (0x) and binary numbers (0b) starting with the latest release. However, I found a bug.
"(0x0)" --> Parse error: Invalid integer literal '0x0)'
"(0x0 )" --> Successfully calculated
This bug causes trouble when functions are used. E.g. "MyFunction(0xABC)"
The text was updated successfully, but these errors were encountered: