Use signed char for tables including -1
Opened this issue · 0 comments
kloetzl commented
char
may not be signed and hence cannot represent -1. And/or comparing (char)-1 with (int)-1 may fail? Let's avoid going down that road and be more explicit.
Opened this issue · 0 comments
char
may not be signed and hence cannot represent -1. And/or comparing (char)-1 with (int)-1 may fail? Let's avoid going down that road and be more explicit.