diff options
author | Alexey Salmin <alexey.salmin@gmail.com> | 2022-02-10 16:49:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
commit | 3c5b1607b38f637d2f3313791ed25c2e080d2647 (patch) | |
tree | 99be7b96e7c66612fbca94331100ef3b5fedcb88 /util/stream/output.h | |
parent | de89752358147d7b25ef59a85b431bb564068a49 (diff) | |
download | ydb-3c5b1607b38f637d2f3313791ed25c2e080d2647.tar.gz |
Restoring authorship annotation for Alexey Salmin <alexey.salmin@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'util/stream/output.h')
-rw-r--r-- | util/stream/output.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/util/stream/output.h b/util/stream/output.h index 00eef50b95..da6f052d5d 100644 --- a/util/stream/output.h +++ b/util/stream/output.h @@ -104,7 +104,7 @@ public: * @param ch Character to write. */ inline void Write(char ch) { - DoWriteC(ch); + DoWriteC(ch); } /** @@ -148,13 +148,13 @@ protected: virtual void DoWriteV(const TPart* parts, size_t count); /** - * Writes a single character into this stream. Can be overridden with a faster implementation. - * - * @param ch Character to write. - */ - virtual void DoWriteC(char ch); - - /** + * Writes a single character into this stream. Can be overridden with a faster implementation. + * + * @param ch Character to write. + */ + virtual void DoWriteC(char ch); + + /** * Flushes this stream's buffer, if any. * * @throws yexception If IO error occurs. |