| 57 | namespace detail { |
| 58 | |
| 59 | zstd_base::zstd_base() |
| 60 | : cstream_(ZSTD_createCStream()), dstream_(ZSTD_createDStream()), in_(new ZSTD_inBuffer), out_(new ZSTD_outBuffer), eof_(0) |
| 61 | { } |
| 62 | |
| 63 | zstd_base::~zstd_base() |
| 64 | { |
nothing calls this directly
no outgoing calls
no test coverage detected