* Parse the time at the given location. */
| 572 | * Parse the time at the given location. |
| 573 | */ |
| 574 | virtual int64_t parseTime(const unsigned char* ptr) const override { |
| 575 | return static_cast<int64_t>(decode32(ptr)) << 32 | decode32(ptr + 4); |
| 576 | } |
| 577 | |
| 578 | virtual std::string parseFutureString(const unsigned char* ptr, uint64_t offset, |
| 579 | uint64_t length) const override { |
nothing calls this directly
no test coverage detected