mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-18 03:29:46 +02:00
"\n" -> '\n'
This commit is contained in:

committed by
Christopher Dunn

parent
c00a3b95c2
commit
745287275c
@@ -1491,7 +1491,7 @@ JSONCPP_STRING Value::toStyledString() const {
|
||||
|
||||
JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : "";
|
||||
out += Json::writeString(builder, *this);
|
||||
out += "\n";
|
||||
out += '\n';
|
||||
|
||||
return out;
|
||||
}
|
||||
|
Reference in New Issue
Block a user