From 032a8bdcf2cea199742184da53a3d6aa9b309f73 Mon Sep 17 00:00:00 2001 From: Tristan Penman Date: Mon, 7 Nov 2016 23:00:25 -0800 Subject: [PATCH] Remove unused variable from nlohmann_json_utils.hpp --- include/valijson/utils/nlohmann_json_utils.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/valijson/utils/nlohmann_json_utils.hpp b/include/valijson/utils/nlohmann_json_utils.hpp index e52c246..01838d8 100644 --- a/include/valijson/utils/nlohmann_json_utils.hpp +++ b/include/valijson/utils/nlohmann_json_utils.hpp @@ -20,7 +20,6 @@ inline bool loadDocument(const std::string &path, nlohmann::json &document) { } // Parse schema - std::string err; try { document = nlohmann::json::parse(file); } catch (std::invalid_argument const& exception) {