diff options
| author | kerzum <[email protected]> | 2022-02-10 16:49:33 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:33 +0300 | 
| commit | 47a7e7b29636bfb2deb1df5f92363b3c75229c95 (patch) | |
| tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/stream/zerocopy.h | |
| parent | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/stream/zerocopy.h')
| -rw-r--r-- | util/stream/zerocopy.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/util/stream/zerocopy.h b/util/stream/zerocopy.h index dffe304457a..3315aa3a517 100644 --- a/util/stream/zerocopy.h +++ b/util/stream/zerocopy.h @@ -1,9 +1,9 @@  #pragma once -  +  #include <util/system/yassert.h>  #include <util/system/defaults.h>  #include <util/generic/ylimits.h> -  +  #include "input.h"  class IOutputStream; @@ -22,7 +22,7 @@ class IZeroCopyInput: public IInputStream {  public:      IZeroCopyInput() noexcept = default;      ~IZeroCopyInput() override; -  +      IZeroCopyInput(IZeroCopyInput&&) noexcept = default;      IZeroCopyInput& operator=(IZeroCopyInput&&) noexcept = default; @@ -54,8 +54,8 @@ protected:      size_t DoSkip(size_t len) override;      ui64 DoReadAll(IOutputStream& out) override;      virtual size_t DoNext(const void** ptr, size_t len) = 0; -};  -  +}; +  /**  * Input stream with direct access to the input buffer and ability to undo read  * | 
