1
0
mirror of https://github.com/nlohmann/json.git synced 2025-08-10 16:23:04 +03:00

add regression test #2824

This commit is contained in:
Niels Lohmann
2021-07-30 15:00:54 +02:00
parent 2c030bac2c
commit c7822840eb

View File

@@ -168,7 +168,7 @@ class sax_no_exception : public nlohmann::detail::json_sax_dom_parser<json>
static bool parse_error(std::size_t /*position*/, const std::string& /*last_token*/, const json::exception& ex) static bool parse_error(std::size_t /*position*/, const std::string& /*last_token*/, const json::exception& ex)
{ {
error_string = new std::string(ex.what()); error_string = new std::string(ex.what()); // NOLINT(cppcoreguidelines-owning-memory)
return false; return false;
} }