@brief create an empty value with a given type @sa https://json.nlohmann.me/api/basic_json/basic_json/
| 19981 | /// @brief create an empty value with a given type |
| 19982 | /// @sa https://json.nlohmann.me/api/basic_json/basic_json/ |
| 19983 | basic_json(const value_t v) |
| 19984 | : m_type(v), m_value(v) |
| 19985 | { |
| 19986 | assert_invariant(); |
| 19987 | } |
| 19988 | |
| 19989 | /// @brief create a null object |
| 19990 | /// @sa https://json.nlohmann.me/api/basic_json/basic_json/ |
no test coverage detected