"\n" -> '\n'

This commit is contained in:
pavel.pimenov
2018-06-04 09:06:24 +03:00
committed by Christopher Dunn
parent c00a3b95c2
commit 745287275c
2 changed files with 7 additions and 7 deletions

View File

@@ -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;
}