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
Hi :)
There are a few issues that have been introduced by 429cd7b for ARM GCC. Namely narrowing of int to char at the index declaration and the transition_table[guards/actions] test failure. See this example: https://godbolt.org/z/h9fGa7nhq
int
char
index
transition_table[guards/actions]
Is there a workaround or a solution apart from using the commit right before?
Thank you for the great library!
The text was updated successfully, but these errors were encountered:
The fix is, to use a signed char.
signed char
Sorry, something went wrong.
No branches or pull requests
Hi :)
There are a few issues that have been introduced by 429cd7b for ARM GCC. Namely narrowing of
int
tochar
at theindex
declaration and thetransition_table[guards/actions]
test failure. See this example: https://godbolt.org/z/h9fGa7nhqIs there a workaround or a solution apart from using the commit right before?
Thank you for the great library!
The text was updated successfully, but these errors were encountered: