| 465 | |
| 466 | void BackUp(int count) override { pos_ -= count; } |
| 467 | bool Skip(int count) override { |
| 468 | pos_ += count; |
| 469 | return true; |
| 470 | } |
| 471 | protobuf_int64 ByteCount() const override { return pos_; } |
| 472 | Status status() const { return status_; } |
| 473 |
no outgoing calls
no test coverage detected