fix JSON parser

This commit is contained in:
Vadim Lopatin 2015-12-14 12:21:19 +03:00
parent 34f26ff445
commit 47487535c5
1 changed files with 3 additions and 0 deletions

View File

@ -1699,6 +1699,9 @@ final class Setting {
case '\\':
res ~= '\\';
break;
case '/':
res ~= '/';
break;
case '\"':
res ~= '\"';
break;