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 | 0f79d22ae2d0756b8c99339136f54b76c1a7aee2 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp | |
parent | f416f729013ee78297e0535b25f5ecfd517003f4 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-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 b5d19e660e6..667a0494b71 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; |