| 15 | } |
| 16 | |
| 17 | IJsonHandler* JsonHandler::readBool(bool /*b*/) { |
| 18 | this->reportWarning("A boolean value is not allowed and has been ignored."); |
| 19 | return this->parent(); |
| 20 | } |
| 21 | |
| 22 | IJsonHandler* JsonHandler::readInt32(int32_t /*i*/) { |
| 23 | this->reportWarning("An integer value is not allowed and has been ignored."); |
no test coverage detected