This commit is contained in:
Niels 2015-12-17 16:52:38 +01:00
parent ac4d4a0f66
commit 1adb9d62dd
2 changed files with 10 additions and 0 deletions

View file

@ -6301,6 +6301,11 @@ class basic_json
return "<parse error>";
case token_type::end_of_input:
return "<end of input>";
default:
{
// catch non-enum values
return "unknown token"; // LCOV_EXCL_LINE
}
}
}

View file

@ -6301,6 +6301,11 @@ class basic_json
return "<parse error>";
case token_type::end_of_input:
return "<end of input>";
default:
{
// catch non-enum values
return "unknown token"; // LCOV_EXCL_LINE
}
}
}