| 34 | namespace mmkv { |
| 35 | |
| 36 | CodedOutputData::CodedOutputData(void *ptr, size_t len) : m_ptr((uint8_t *) ptr), m_size(len), m_position(0) { |
| 37 | MMKV_ASSERT(m_ptr); |
| 38 | } |
| 39 | |
| 40 | uint8_t *CodedOutputData::curWritePointer() { |
| 41 | return m_ptr + m_position; |
nothing calls this directly
no outgoing calls
no test coverage detected