| 71 | const TJsonValue TJsonValue::UNDEFINED{}; |
| 72 | |
| 73 | TJsonValue::TJsonValue(const EJsonValueType type) { |
| 74 | SetType(type); |
| 75 | } |
| 76 | |
| 77 | TJsonValue::TJsonValue(TJsonValue&& vval) noexcept |
| 78 | : Type(JSON_UNDEFINED) |
nothing calls this directly
no test coverage detected