aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/debug.h
diff options
context:
space:
mode:
authoragorodilov <agorodilov@yandex-team.ru>2022-02-10 16:47:09 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:09 +0300
commit7a4979e6211c3e78c7f9041d4a9e5d3405343c36 (patch)
tree9e9943579e5a14679af7cd2cda3c36d8c0b775d3 /util/stream/debug.h
parent676340c42e269f3070f194d160f42a83a10568d4 (diff)
downloadydb-7a4979e6211c3e78c7f9041d4a9e5d3405343c36.tar.gz
Restoring authorship annotation for <agorodilov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/stream/debug.h')
-rw-r--r--util/stream/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/stream/debug.h b/util/stream/debug.h
index 92d6d4b42d..0407cd6a73 100644
--- a/util/stream/debug.h
+++ b/util/stream/debug.h
@@ -13,13 +13,13 @@
class TDebugOutput: public IOutputStream {
public:
inline TDebugOutput() noexcept = default;
- ~TDebugOutput() override = default;
+ ~TDebugOutput() override = default;
TDebugOutput(TDebugOutput&&) noexcept = default;
TDebugOutput& operator=(TDebugOutput&&) noexcept = default;
private:
- void DoWrite(const void* buf, size_t len) override;
+ void DoWrite(const void* buf, size_t len) override;
};
/**