1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-09 11:01:47 +03:00

fix test case

This commit is contained in:
Niels
2015-02-11 10:57:17 +01:00
parent 4b9bd96ab1
commit 463c38df60
3 changed files with 11 additions and 6 deletions

View File

@ -2443,10 +2443,10 @@ class basic_json
return ":";
case (token_type::value_separator):
return ",";
case (token_type::parse_error):
return "<parse error>";
case (token_type::end_of_input):
return "<end of input>";
default:
return "<parse error>";
}
}