Fix variable redeclaration from last merge conflict fix.

This commit is contained in:
Jason Turner 2017-11-21 14:06:42 -07:00 committed by GitHub
parent e97d3723df
commit 680f9b9242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -570,7 +570,6 @@ struct JSONParser {
bool isNegative = false;
int64_t exp = 0;
bool isExpNegative = false;
long exp = 0;
if( offset < str.size() && str.at(offset) == '-' ) {
isNegative = true;
++offset;