| 151 | } |
| 152 | |
| 153 | void SetDict() { |
| 154 | if (inflateSetDictionary(Z(), (const Bytef*)Dict.data(), Dict.size()) != Z_OK) { |
| 155 | ythrow TZLibCompressorError() << "can not set inflate dictionary"; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | bool AllowMultipleStreams_ = true; |
| 160 | TStringBuf Dict; |
no test coverage detected