| 45 | } |
| 46 | |
| 47 | IJsonHandler* JsonHandler::readString(const std::string_view& /*str*/) { |
| 48 | this->reportWarning("A string value is not allowed and has been ignored."); |
| 49 | return this->parent(); |
| 50 | } |
| 51 | |
| 52 | IJsonHandler* JsonHandler::readObjectStart() { |
| 53 | this->reportWarning("An object value is not allowed and has been ignored."); |
no test coverage detected