diff options
author | lloyd <[email protected]> | 2014-12-09 01:53:06 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-12-09 01:53:06 +0000 |
commit | 0bc9c6b170bd2c52a2fccfda12f767700bb40968 (patch) | |
tree | 5c1328b44da71c512332442e3d36989df70ef7c7 /src/lib/compression/compression.h | |
parent | e14d04baf0261d5250285fcb6486950078b2c6e7 (diff) |
Figure out which decompressor to use based on the input file extension.
Rename Bzip to Bzip2, and split Zlib and Deflate compressors into two
completely distinct types rather than using a bool flag to the Zlib
constructor.
Ignore null pointers to our free implementation (LZMA does this).
Diffstat (limited to 'src/lib/compression/compression.h')
-rw-r--r-- | src/lib/compression/compression.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/compression/compression.h b/src/lib/compression/compression.h index 75a100cc6..68b25886b 100644 --- a/src/lib/compression/compression.h +++ b/src/lib/compression/compression.h @@ -65,7 +65,6 @@ class BOTAN_DLL Stream_Compression : public Compressor_Transformation void finish(secure_vector<byte>& buf, size_t offset = 0) override; void clear() override; - private: secure_vector<byte> start_raw(const byte[], size_t) override; |