more unit tests
This commit is contained in:
parent
29a8d43d5a
commit
4cd341d4db
2 changed files with 53 additions and 2 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue