mirror of
https://github.com/nlohmann/json.git
synced 2025-07-25 13:41:56 +03:00
move binary_{reader,writer} outside of basic_json
This commit is contained in:
@ -53,7 +53,7 @@ TEST_CASE("convenience functions")
|
||||
const char* escaped)
|
||||
{
|
||||
std::stringstream ss;
|
||||
json::serializer s(json::output_adapter<char>::create(ss), ' ');
|
||||
json::serializer s(nlohmann::detail::output_adapter_factory<char>::create(ss), ' ');
|
||||
s.dump_escaped(original);
|
||||
CHECK(ss.str() == escaped);
|
||||
};
|
||||
|
Reference in New Issue
Block a user