Why Qt creator expression evaluator shows 2 values for 1 variable?
Solved
Qt Creator and other tools
-
-
Because QtCreator (or better the debugger used by QtCreator) doesn't know if you want to interpret the value as signed or unsigned char - signed char(-90) == unsigned char(166) == 0xa6
-
@Christian-Ehrlicher Thank you very much, you resolved my question perfectly