aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/output.h
diff options
context:
space:
mode:
authorAlexey Salmin <alexey.salmin@gmail.com>2022-02-10 16:49:37 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:37 +0300
commit3c5b1607b38f637d2f3313791ed25c2e080d2647 (patch)
tree99be7b96e7c66612fbca94331100ef3b5fedcb88 /util/stream/output.h
parentde89752358147d7b25ef59a85b431bb564068a49 (diff)
downloadydb-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.h16
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.