Merge pull request #1950 from FrancoisChabot/issues/1457

templated input adapters
This commit is contained in:
Niels Lohmann 2020-05-14 07:52:02 +02:00 committed by GitHub
commit 0857140839
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 708 additions and 419 deletions

View file

@ -40,7 +40,8 @@ namespace
json::lexer::token_type scan_string(const char* s);
json::lexer::token_type scan_string(const char* s)
{
return json::lexer(nlohmann::detail::input_adapter(s)).scan();
auto ia = nlohmann::detail::input_adapter(s);
return nlohmann::detail::lexer<json, decltype(ia)>(std::move(ia)).scan();
}
}