| 95 | } |
| 96 | |
| 97 | uint32_t StoreMeta::GetCrc() const{ |
| 98 | return impl_->crc; |
| 99 | } |
| 100 | |
| 101 | bool StoreMeta::CheckCrc(uint32_t pre_crc) const { |
| 102 | auto tmp_crc = crc32(pre_crc, (const unsigned char *)&impl_->cursor_id, sizeof(uint64_t)); |
no outgoing calls
no test coverage detected