More compact JSON formatting.

This commit is contained in:
XMRig 2019-08-04 22:07:05 +07:00
parent 7eaf7764f7
commit a8e86c3530
6 changed files with 16 additions and 5 deletions

View file

@ -118,6 +118,8 @@ bool xmrig::Json::save(const char *fileName, const rapidjson::Document &doc)
OStreamWrapper osw(ofs);
PrettyWriter<OStreamWrapper> writer(osw);
writer.SetFormatOptions(kFormatSingleLineArray);
doc.Accept(writer);
return true;