The HexValReader class converts numbers to a unsigned int value, while the BinValReader converts to a signed int.
This is due to mpValReader.cpp, line 247, where a cast from unsigned int to signed int takes place.
A consistent conversion for both number types, for example to signed int, would be advisable.
The HexValReader class converts numbers to a unsigned int value, while the BinValReader converts to a signed int. This is due to mpValReader.cpp, line 247, where a cast from unsigned int to signed int takes place.
A consistent conversion for both number types, for example to signed int, would be advisable.