mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
✨ implemented an indentation character #520
An optional parameter for dump() allows to set the character to use for indentation (default: space). In case a JSON value is serialized to an output stream, its fill character is used (and can be set with std::setfill).
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(json::output_adapter<char>::create(ss), ' ');
|
||||
s.dump_escaped(original);
|
||||
CHECK(ss.str() == escaped);
|
||||
};
|
||||
|
Reference in New Issue
Block a user