| 38 | } |
| 39 | |
| 40 | IJsonHandler* JsonObjectJsonHandler::readBool(bool b) { |
| 41 | addOrReplace(*this->_stack.back(), b); |
| 42 | return this->doneElement(); |
| 43 | } |
| 44 | |
| 45 | IJsonHandler* JsonObjectJsonHandler::readInt32(int32_t i) { |
| 46 | addOrReplace(*this->_stack.back(), std::int64_t(i)); |
nothing calls this directly
no test coverage detected