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