aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authornicklavr <nicklavr@yandex-team.ru>2022-02-10 16:50:56 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:56 +0300
commit0f79d22ae2d0756b8c99339136f54b76c1a7aee2 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library
parentf416f729013ee78297e0535b25f5ecfd517003f4 (diff)
downloadydb-0f79d22ae2d0756b8c99339136f54b76c1a7aee2.tar.gz
Restoring authorship annotation for <nicklavr@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library')
-rw-r--r--library/cpp/streams/zstd/zstd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/streams/zstd/zstd.h b/library/cpp/streams/zstd/zstd.h
index b5d19e660e..667a0494b7 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;