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

more unit tests

This commit is contained in:
Niels
2015-02-10 18:51:09 +01:00
parent 29a8d43d5a
commit 4cd341d4db
2 changed files with 53 additions and 2 deletions

View File

@ -1315,24 +1315,28 @@ class basic_json
{
return "null";
}
case (value_t::object):
{
return "object";
}
case (value_t::array):
{
return "array";
}
case (value_t::string):
{
return "string";
}
case (value_t::boolean):
{
return "boolean";
}
case (value_t::number_integer):
case (value_t::number_float):
default:
{
return "number";
}