| 43 | } |
| 44 | |
| 45 | IJsonHandler* JsonObjectJsonHandler::readInt32(int32_t i) { |
| 46 | addOrReplace(*this->_stack.back(), std::int64_t(i)); |
| 47 | return this->doneElement(); |
| 48 | } |
| 49 | |
| 50 | IJsonHandler* JsonObjectJsonHandler::readUint32(uint32_t i) { |
| 51 | addOrReplace(*this->_stack.back(), std::uint64_t(i)); |
nothing calls this directly
no test coverage detected