use not over !

This commit is contained in:
Jett 2016-10-23 14:58:12 -05:00
parent 308082a9a8
commit 66a4c06a9d
2 changed files with 3 additions and 2 deletions

View File

@ -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)
{

View File

@ -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)
{