| 4 | #include <zlib.h> |
| 5 | |
| 6 | static std::shared_ptr<std::vector<uint8_t>> createVector(unsigned size) |
| 7 | { |
| 8 | return std::make_shared<std::vector<uint8_t>>(size); |
| 9 | } |
| 10 | |
| 11 | static std::shared_ptr<std::vector<uint8_t>> createVector( |
| 12 | const uint8_t* ptr, unsigned size) |
no test coverage detected