+ better string handling
This commit is contained in:
parent
85abe926cf
commit
af4aca9edd
1 changed files with 1 additions and 1 deletions
|
@ -1840,7 +1840,7 @@ void JSON::Parser::parse(JSON& result)
|
||||||
expect(':');
|
expect(':');
|
||||||
|
|
||||||
// value
|
// value
|
||||||
parse(result[key]);
|
parse(result[std::move(key)]);
|
||||||
}
|
}
|
||||||
while (_current == ',' && next());
|
while (_current == ',' && next());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue