| 63 | } |
| 64 | |
| 65 | std::string ZstdCodec::toString() const { |
| 66 | if (nbWorkers_ > 0) { |
| 67 | return fmt::format("{}, nbWorkers: {}", name(), nbWorkers_); |
| 68 | } |
| 69 | return Codec::toString(); |
| 70 | } |
| 71 | |
| 72 | ZstdCodec::~ZstdCodec() { |
| 73 | if (cctx_ != nullptr) { |
nothing calls this directly
no test coverage detected