diff options
author | nicklavr <nicklavr@yandex-team.ru> | 2022-02-10 16:50:56 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:56 +0300 |
commit | f416f729013ee78297e0535b25f5ecfd517003f4 (patch) | |
tree | 943be2ca7c5c8da1ca3e9ec825d3b9350178ba86 | |
parent | 2c97fff2ee5c9f88db1d47ca1ebecb6092632d18 (diff) | |
download | ydb-f416f729013ee78297e0535b25f5ecfd517003f4.tar.gz |
Restoring authorship annotation for <nicklavr@yandex-team.ru>. Commit 1 of 2.
-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 667a0494b7..b5d19e660e 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; |