We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22f987 commit 1798214Copy full SHA for 1798214
1 file changed
src/parser.h
@@ -96,7 +96,7 @@ namespace JsonParser {
96
return index + 1;
97
case '"':
98
{
99
- Node* child = new Node(chs[index]);
+ Node* child = new Node(chs[index].substr(1, chs[index].size() - 2));
100
int index_current = Grammar::Value(index + 2, chs, child);
101
parent->AppendObject(child);
102
0 commit comments