Why Qt creator expression evaluator shows 2 values for 1 variable?
-
wrote on 8 Apr 2022, 14:43 last edited by StudyQt1 4 Aug 2022, 14:43
-
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
-
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
wrote on 11 Apr 2022, 00:56 last edited by@Christian-Ehrlicher Thank you very much, you resolved my question perfectly
1/3