use not over !
This commit is contained in:
parent
308082a9a8
commit
66a4c06a9d
@ -8866,7 +8866,7 @@ basic_json_parser_63:
|
||||
}
|
||||
|
||||
int count = 0; // exponent calculation
|
||||
if (! nl_isdigit(cp))
|
||||
if (not nl_isdigit(cp))
|
||||
{
|
||||
if (plus_or_minus)
|
||||
{
|
||||
|
||||
@ -8154,6 +8154,7 @@ class basic_json
|
||||
if (*str == 'e' or *str == 'E')
|
||||
{
|
||||
cp = *++str;
|
||||
|
||||
const bool negative_exp = cp == '-'; // read in exponent sign (+/-)
|
||||
const bool plus_or_minus = (cp == '-' or cp == '+');
|
||||
if (plus_or_minus)
|
||||
@ -8162,7 +8163,7 @@ class basic_json
|
||||
}
|
||||
|
||||
int count = 0; // exponent calculation
|
||||
if (! nl_isdigit(cp))
|
||||
if (not nl_isdigit(cp))
|
||||
{
|
||||
if (plus_or_minus)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user