diff options
author | nicklavr <[email protected]> | 2022-02-10 16:50:56 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:56 +0300 |
commit | f416f729013ee78297e0535b25f5ecfd517003f4 (patch) | |
tree | 943be2ca7c5c8da1ca3e9ec825d3b9350178ba86 /library/cpp/streams | |
parent | 2c97fff2ee5c9f88db1d47ca1ebecb6092632d18 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/streams')
-rw-r--r-- | library/cpp/streams/zstd/zstd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/streams/zstd/zstd.h b/library/cpp/streams/zstd/zstd.h index 667a0494b71..b5d19e660e6 100644 --- a/library/cpp/streams/zstd/zstd.h +++ b/library/cpp/streams/zstd/zstd.h @@ -15,10 +15,10 @@ public: /** @param slave stream to write compressed data to @param quality, higher quality - slower but better compression. - 0 is default compression (see constant ZSTD_CLEVEL_DEFAULT(3)) + 0 is default compression (see constant ZSTD_CLEVEL_DEFAULT(3)) max compression is ZSTD_MAX_CLEVEL (22) */ - explicit TZstdCompress(IOutputStream* slave, int quality = 0); + explicit TZstdCompress(IOutputStream* slave, int quality = 0); ~TZstdCompress() override; private: void DoWrite(const void* buffer, size_t size) override; |