default constructor (for null values)
| 992 | |
| 993 | /// default constructor (for null values) |
| 994 | json_value() = default; |
| 995 | /// constructor for booleans |
| 996 | json_value(boolean_t v) noexcept : boolean(v) {} |
| 997 | /// constructor for numbers (integer) |
nothing calls this directly
no test coverage detected