1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

Merge pull request #2071 from nlohmann/issue2067

Properly pass serialize_binary to dump function
This commit is contained in:
Niels Lohmann
2020-04-29 19:39:58 +02:00
committed by GitHub
4 changed files with 34 additions and 20 deletions

View File

@ -2237,11 +2237,11 @@ class basic_json
if (indent >= 0)
{
s.dump(*this, true, ensure_ascii, static_cast<unsigned int>(indent), serialize_binary);
s.dump(*this, true, ensure_ascii, static_cast<unsigned int>(indent), 0, serialize_binary);
}
else
{
s.dump(*this, false, ensure_ascii, 0, serialize_binary);
s.dump(*this, false, ensure_ascii, 0, 0, serialize_binary);
}
return result;