| 27 | namespace table { |
| 28 | |
| 29 | inline uint32 Block::NumRestarts() const { |
| 30 | assert(size_ >= sizeof(uint32)); |
| 31 | return core::DecodeFixed32(data_ + size_ - sizeof(uint32)); |
| 32 | } |
| 33 | |
| 34 | Block::Block(const BlockContents& contents) |
| 35 | : data_(contents.data.data()), |
nothing calls this directly
no test coverage detected