Remove unused variable from nlohmann_json_utils.hpp

This commit is contained in:
Tristan Penman 2016-11-07 23:00:25 -08:00
parent 187c66d06c
commit 032a8bdcf2

View File

@ -20,7 +20,6 @@ inline bool loadDocument(const std::string &path, nlohmann::json &document) {
} }
// Parse schema // Parse schema
std::string err;
try { try {
document = nlohmann::json::parse(file); document = nlohmann::json::parse(file);
} catch (std::invalid_argument const& exception) { } catch (std::invalid_argument const& exception) {