| 9 | namespace { |
| 10 | struct TBZipCodec: public TAddLengthCodec<TBZipCodec> { |
| 11 | inline TBZipCodec(int level) |
| 12 | : Level(level) |
| 13 | , MyName("bzip2-" + ToString(Level)) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | static inline size_t DoMaxCompressedLength(size_t in) noexcept { |
| 18 | // very strange |
nothing calls this directly
no test coverage detected