| 104 | WKBBuffer(const uint8_t* data, int64_t size) : data_(data), size_(size) {} |
| 105 | |
| 106 | uint8_t readUInt8() { |
| 107 | return readChecked<uint8_t>(); |
| 108 | } |
| 109 | |
| 110 | uint32_t readUInt32(bool swap) { |
| 111 | auto value = readChecked<uint32_t>(); |
no outgoing calls
no test coverage detected