| 40 | } |
| 41 | |
| 42 | IJsonHandler* JsonHandler::readDouble(double /*d*/) { |
| 43 | this->reportWarning("A double value is not allowed and has been ignored."); |
| 44 | return this->parent(); |
| 45 | } |
| 46 | |
| 47 | IJsonHandler* JsonHandler::readString(const std::string_view& /*str*/) { |
| 48 | this->reportWarning("A string value is not allowed and has been ignored."); |
no test coverage detected