aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/zlib.h
diff options
context:
space:
mode:
authoralexcrush <alexcrush@yandex-team.ru>2022-02-10 16:50:33 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:33 +0300
commit34f0683c2d7731f2f9f59966c12e602f405fa0d6 (patch)
tree9af7dd74efcfa3d8aa7b40bd757ad8f2d89f6902 /util/stream/zlib.h
parenta1d67d6a31f789aa011250c3edce5751c0cadad2 (diff)
downloadydb-34f0683c2d7731f2f9f59966c12e602f405fa0d6.tar.gz
Restoring authorship annotation for <alexcrush@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/stream/zlib.h')
-rw-r--r--util/stream/zlib.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/util/stream/zlib.h b/util/stream/zlib.h
index e7de7c81b7..02192b8dc2 100644
--- a/util/stream/zlib.h
+++ b/util/stream/zlib.h
@@ -51,17 +51,17 @@ public:
TZLibDecompress(IInputStream* input, ZLib::StreamType type = ZLib::Auto, size_t buflen = ZLib::ZLIB_BUF_LEN,
TStringBuf dict = {});
- /**
- * Allows/disallows multiple sequential compressed streams. Allowed by default.
- *
- * If multiple streams are allowed, their decompressed content will be concatenated.
- * If multiple streams are disabled, then only first stream is decompressed. After that end
+ /**
+ * Allows/disallows multiple sequential compressed streams. Allowed by default.
+ *
+ * If multiple streams are allowed, their decompressed content will be concatenated.
+ * If multiple streams are disabled, then only first stream is decompressed. After that end
* of IInputStream will have happen, i.e. method Read() will return 0.
- *
- * @param allowMultipleStreams - flag to allow (true) or disable (false) multiple streams.
- */
- void SetAllowMultipleStreams(bool allowMultipleStreams);
-
+ *
+ * @param allowMultipleStreams - flag to allow (true) or disable (false) multiple streams.
+ */
+ void SetAllowMultipleStreams(bool allowMultipleStreams);
+
~TZLibDecompress() override;
protected: