diff options
| author | finder <[email protected]> | 2022-02-10 16:49:24 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:24 +0300 |
| commit | 2ab6bab688484680d3ebc5c4a7e9cd3ff04fda04 (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/stream | |
| parent | abbbaf4075fbaa0ff4ce9faa1188089466a21dbe (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/stream')
| -rw-r--r-- | util/stream/zlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/stream/zlib.h b/util/stream/zlib.h index d1c4837a238..e7de7c81b74 100644 --- a/util/stream/zlib.h +++ b/util/stream/zlib.h @@ -159,15 +159,15 @@ public: * Supports efficient `ReadLine` calls and similar "reading in small pieces" * usage patterns. */ -class TBufferedZLibDecompress: public TBuffered<TZLibDecompress> { +class TBufferedZLibDecompress: public TBuffered<TZLibDecompress> { public: template <class T> inline TBufferedZLibDecompress(T* in, ZLib::StreamType type = ZLib::Auto, size_t buf = 1 << 13) : TBuffered<TZLibDecompress>(buf, in, type) { } - + ~TBufferedZLibDecompress() override; -}; - +}; + /** @} */ |
