Open dcorbeil opened 2 months ago
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 fix is, to use a signed char.
signed char
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!