1
0
mirror of https://github.com/nlohmann/json synced 2024-09-20 14:50:06 +00:00

added back forward declaration to address warnings

This commit is contained in:
Francois Chabot 2020-02-28 18:15:11 -05:00
parent c7282d5b1e
commit 7eadd6daef

View File

@ -37,6 +37,7 @@ using nlohmann::json;
namespace
{
// shortcut to scan a string literal
json::lexer::token_type scan_string(const char* s);
json::lexer::token_type scan_string(const char* s)
{
auto ia = nlohmann::detail::input_adapter(s);