Unverified Commit 4c1ebb44 authored by Sonu Lohani's avatar Sonu Lohani Committed by GitHub

Fix warning: ignoring return value

parent b568619c
......@@ -43,7 +43,8 @@ TEST_CASE("tests on very large JSONs")
std::string s(2 * depth, '[');
std::fill(s.begin() + depth, s.end(), ']');
CHECK_NOTHROW(nlohmann::json::parse(s));
json _;
CHECK_NOTHROW(_ = nlohmann::json::parse(s));
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment