| 670 | |
| 671 | public: |
| 672 | explicit SnappyDecompressor(Source* reader) |
| 673 | : reader_(reader), |
| 674 | ip_(NULL), |
| 675 | ip_limit_(NULL), |
| 676 | peeked_(0), |
| 677 | eof_(false) { |
| 678 | } |
| 679 | |
| 680 | ~SnappyDecompressor() { |
| 681 | // Advance past any bytes we peeked at from the reader |
nothing calls this directly
no outgoing calls
no test coverage detected