File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ namespace clickhouse {
8
8
9
9
class CompressedInput : public ZeroCopyInput {
10
10
public:
11
- CompressedInput (InputStream* input);
12
- ~CompressedInput ();
11
+ explicit CompressedInput (InputStream* input);
12
+ ~CompressedInput () override ;
13
13
14
14
protected:
15
15
size_t DoNext (const void ** ptr, size_t len) override ;
@@ -25,8 +25,8 @@ class CompressedInput : public ZeroCopyInput {
25
25
26
26
class CompressedOutput : public OutputStream {
27
27
public:
28
- CompressedOutput (OutputStream * destination, size_t max_compressed_chunk_size = 0 );
29
- ~CompressedOutput ();
28
+ explicit CompressedOutput (OutputStream * destination, size_t max_compressed_chunk_size = 0 );
29
+ ~CompressedOutput () override ;
30
30
31
31
protected:
32
32
size_t DoWrite (const void * data, size_t len) override ;
You can’t perform that action at this time.
0 commit comments