fix json to string conversion error in visual studio

This commit is contained in:
pantor
2017-08-15 22:46:26 +02:00
parent 2199a19a59
commit 90ae5fb543

View File

@@ -461,7 +461,7 @@ public:
for (auto element: input) {
switch ( static_cast<Parser::Type>(element["type"]) ) {
case Parser::Type::String: {
result += element["text"];
result += render_json(element["text"]);
break;
}
case Parser::Type::Variable: {