| 48 | } |
| 49 | |
| 50 | IJsonHandler* JsonObjectJsonHandler::readUint32(uint32_t i) { |
| 51 | addOrReplace(*this->_stack.back(), std::uint64_t(i)); |
| 52 | return this->doneElement(); |
| 53 | } |
| 54 | |
| 55 | IJsonHandler* JsonObjectJsonHandler::readInt64(int64_t i) { |
| 56 | addOrReplace(*this->_stack.back(), i); |
nothing calls this directly
no test coverage detected