+ more test cases
This commit is contained in:
parent
ea85da8a55
commit
98af0887f2
2 changed files with 21 additions and 5 deletions
11
src/JSON.cc
11
src/JSON.cc
|
@ -477,11 +477,6 @@ const std::string JSON::toString() const noexcept
|
|||
{
|
||||
switch (_type)
|
||||
{
|
||||
case (value_type::null):
|
||||
{
|
||||
return "null";
|
||||
}
|
||||
|
||||
case (value_type::string):
|
||||
{
|
||||
return std::string("\"") + *_value.string + "\"";
|
||||
|
@ -533,6 +528,12 @@ const std::string JSON::toString() const noexcept
|
|||
|
||||
return "{" + result + "}";
|
||||
}
|
||||
|
||||
// actually only value_type::null - but making the compiler happy
|
||||
default:
|
||||
{
|
||||
return "null";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue