mirror of
https://github.com/nlohmann/json.git
synced 2025-07-25 13:41:56 +03:00
♻️ refactored binary readers to use a SAX parser
This commit is contained in:
@ -149,7 +149,7 @@ json parser_helper(const std::string& s)
|
||||
CHECK(j_nothrow == j);
|
||||
|
||||
json j_sax;
|
||||
nlohmann::json_sax_dom_parser<json> sdp(j_sax);
|
||||
nlohmann::detail::json_sax_dom_parser<json> sdp(j_sax);
|
||||
json::sax_parse(s, &sdp);
|
||||
CHECK(j_sax == j);
|
||||
|
||||
|
Reference in New Issue
Block a user