| 17 | return result; |
| 18 | } |
| 19 | static int DecodeKey(const Slice& k) { |
| 20 | assert(k.size() == 4); |
| 21 | return DecodeFixed32(k.data()); |
| 22 | } |
| 23 | static void* EncodeValue(uintptr_t v) { return reinterpret_cast<void*>(v); } |
| 24 | static int DecodeValue(void* v) { return reinterpret_cast<uintptr_t>(v); } |
| 25 |
no test coverage detected