mirror of
https://github.com/nlohmann/json.git
synced 2026-06-11 07:09:51 +00:00
fixed #31: only use spaces in pretty print
This commit is contained in:
+5
-4
@@ -530,7 +530,7 @@ std::string json::dump(const bool prettyPrint, const unsigned int indentStep,
|
||||
{
|
||||
if (i != value_.array->begin())
|
||||
{
|
||||
result += prettyPrint ? ",\n" : ", ";
|
||||
result += prettyPrint ? ",\n" : ",";
|
||||
}
|
||||
result += indent() + i->dump(prettyPrint, indentStep, currentIndent);
|
||||
}
|
||||
@@ -565,10 +565,11 @@ std::string json::dump(const bool prettyPrint, const unsigned int indentStep,
|
||||
{
|
||||
if (i != value_.object->begin())
|
||||
{
|
||||
result += prettyPrint ? ",\n" : ", ";
|
||||
result += prettyPrint ? ",\n" : ",";
|
||||
}
|
||||
result += indent() + "\"" + i->first + "\": " + i->second.dump(prettyPrint, indentStep,
|
||||
currentIndent);
|
||||
result += indent() + "\"" + i->first + "\":" + (prettyPrint ? " " : "") + i->second.dump(
|
||||
prettyPrint, indentStep,
|
||||
currentIndent);
|
||||
}
|
||||
|
||||
// decrease indentation
|
||||
|
||||
Reference in New Issue
Block a user