| 10 | JsonHandler::JsonHandler() noexcept = default; |
| 11 | |
| 12 | IJsonHandler* JsonHandler::readNull() { |
| 13 | this->reportWarning("A null value is not allowed and has been ignored."); |
| 14 | return this->parent(); |
| 15 | } |
| 16 | |
| 17 | IJsonHandler* JsonHandler::readBool(bool /*b*/) { |
| 18 | this->reportWarning("A boolean value is not allowed and has been ignored."); |
no test coverage detected