1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

🔨 templated output_adapter and used in class serializer

This commit is contained in:
Niels Lohmann
2017-04-14 19:49:05 +02:00
parent 2d2b98a50a
commit 717106eced
2 changed files with 154 additions and 96 deletions

View File

@ -53,7 +53,7 @@ TEST_CASE("convenience functions")
const char* escaped)
{
std::stringstream ss;
json::serializer s(ss);
json::serializer s(json::output_adapter<char>::create(ss));
s.dump_escaped(original);
CHECK(ss.str() == escaped);
};