1
0
mirror of https://github.com/nlohmann/json synced 2024-11-08 21:50:07 +00:00

Amalgamate again

This commit is contained in:
ltjax 2022-11-23 00:08:52 +01:00
parent bb0aac1996
commit 59192e9ed9

View File

@ -18082,7 +18082,7 @@ class serializer
return;
}
if (pretty_print(val, current_indent))
if (pretty_print(val, static_cast<int>(current_indent)))
{
o->write_characters("{\n", 2);
@ -18155,7 +18155,7 @@ class serializer
return;
}
if (pretty_print(val, current_indent))
if (pretty_print(val, static_cast<int>(current_indent)))
{
o->write_characters("[\n", 2);
@ -18217,7 +18217,7 @@ class serializer
case value_t::binary:
{
if (pretty_print(val, current_indent))
if (pretty_print(val, static_cast<int>(current_indent)))
{
o->write_characters("{\n", 2);