+ better string handling

This commit is contained in:
Niels 2015-01-02 12:47:32 +01:00
parent 85abe926cf
commit af4aca9edd

View file

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