mirror of
https://github.com/nlohmann/json
synced 2024-11-08 21:50:07 +00:00
Amalgamate again
This commit is contained in:
parent
bb0aac1996
commit
59192e9ed9
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user