I'm using the LLDB extension for VSCode, and my variables typed as i8
are printed as characters. Both in the VSCode debugging panel, and when using print
in the debugger console.
The variable is defined in the following way:
for y in 0..self.height
self.height
being an i8
.
I found How do I make the Xcode debugger show uint8_t values as numbers?, but even trying to add a fromat: type format add -f decimal int8_t
, print y
still outputs (signed char) $5 = '\a'
instead of (let me consult the C escape sequences and the ascii chart...) 7
.