1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00

fixed coverage bug

This commit is contained in:
Niels
2016-06-29 09:53:48 +02:00
parent fc7f4b8fba
commit a0609b2da3
2 changed files with 2 additions and 4 deletions

View File

@ -8773,8 +8773,7 @@ basic_json_parser_63:
{
return std::accumulate(reference_tokens.begin(),
reference_tokens.end(), std::string{},
[](const std::string & a,
const std::string & b)
[](const std::string & a, const std::string & b)
{
return a + "/" + escape(b);
});