Merge pull request #1950 from FrancoisChabot/issues/1457
templated input adapters
This commit is contained in:
commit
0857140839
8 changed files with 708 additions and 419 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue