| 138 | { |
| 139 | public: |
| 140 | LzmaDecompressorImpl(BlockCb cb) : Lzma(cb) |
| 141 | { |
| 142 | if (lzma_auto_decoder(&m_strm, (std::numeric_limits<uint32_t>::max)(), |
| 143 | LZMA_TELL_UNSUPPORTED_CHECK)) |
| 144 | throw compression_error("Can't create decompressor"); |
| 145 | } |
| 146 | |
| 147 | void decompress(const char *buf, size_t bufsize) |
| 148 | { |
nothing calls this directly
no test coverage detected