From 680f9b92429515dc83bf400ed774bb117abde1e3 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Tue, 21 Nov 2017 14:06:42 -0700 Subject: [PATCH] Fix variable redeclaration from last merge conflict fix. --- include/chaiscript/utility/json.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/chaiscript/utility/json.hpp b/include/chaiscript/utility/json.hpp index 121b9390..d7c632c6 100644 --- a/include/chaiscript/utility/json.hpp +++ b/include/chaiscript/utility/json.hpp @@ -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;