| 53 | } |
| 54 | |
| 55 | IJsonHandler* JsonObjectJsonHandler::readInt64(int64_t i) { |
| 56 | addOrReplace(*this->_stack.back(), i); |
| 57 | return this->doneElement(); |
| 58 | } |
| 59 | |
| 60 | IJsonHandler* JsonObjectJsonHandler::readUint64(uint64_t i) { |
| 61 | addOrReplace(*this->_stack.back(), i); |
nothing calls this directly
no test coverage detected