Open rwk-unil opened 2 weeks ago
Because the C/C++ standard does not specify the signedness of the char type the results will be compiler/machine dependent this can lead to unexpected behaviour.
Use signed char instead of char to avoid these cases.
References :
Fixes : https://github.com/odelaneau/GLIMPSE/issues/242
Because the C/C++ standard does not specify the signedness of the char type the results will be compiler/machine dependent this can lead to unexpected behaviour.
Use signed char instead of char to avoid these cases.
References :
Fixes : https://github.com/odelaneau/GLIMPSE/issues/242