Hi,
In the header StringExtras.h, function hexDigitValue
due to the expression
LUT[i] = -1U;
my compiler gives me
error C4146: unary minus operator applied to unsigned type, result still unsigned
This is a warning turned into an error by a default compiler switch
The patch gives one solution which I believe also could be more efficient
Thanks
How about just ~0U ?