1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

Adjust more files after actually building like the CI

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
Ferry Huberts
2021-08-13 13:43:51 +02:00
parent 832cee5b77
commit e7a69b8d31
6 changed files with 154 additions and 0 deletions

View File

@ -102,6 +102,14 @@ class exception : public std::exception
break;
}
case value_t::null:
case value_t::string:
case value_t::boolean:
case value_t::number_integer:
case value_t::number_unsigned:
case value_t::number_float:
case value_t::binary:
case value_t::discarded:
default: // LCOV_EXCL_LINE
break; // LCOV_EXCL_LINE
}