fix warnings: array subscript is of type 'char' [-Wchar-subscripts]
This commit is contained in:
@@ -301,7 +301,7 @@ public:
|
||||
while (isxdigit(*psz))
|
||||
{
|
||||
*this <<= 4;
|
||||
int n = phexdigit[*psz++];
|
||||
int n = phexdigit[(unsigned char)*psz++];
|
||||
*this += n;
|
||||
}
|
||||
if (fNegative)
|
||||
|
||||
Reference in New Issue
Block a user