mirror of
https://github.com/mhx/dwarfs.git
synced 2025-09-12 22:10:54 -04:00
Allow block_compressor default construction
This commit is contained in:
parent
6f9702c347
commit
8c24b443d9
@ -47,7 +47,9 @@ class bad_compression_ratio_error : public std::runtime_error {
|
|||||||
|
|
||||||
class block_compressor {
|
class block_compressor {
|
||||||
public:
|
public:
|
||||||
block_compressor(const std::string& spec);
|
block_compressor() = default;
|
||||||
|
|
||||||
|
explicit block_compressor(const std::string& spec);
|
||||||
|
|
||||||
block_compressor(const block_compressor& bc)
|
block_compressor(const block_compressor& bc)
|
||||||
: impl_(bc.impl_->clone()) {}
|
: impl_(bc.impl_->clone()) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user