diff options
author | kostik <kostik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
commit | 89516f2fd8e143755ba2973385407d77676b18a0 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/system/event.cpp | |
parent | f7619e21ba894db354477390e8fe96256a6eb14a (diff) | |
download | ydb-89516f2fd8e143755ba2973385407d77676b18a0.tar.gz |
Restoring authorship annotation for <kostik@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/event.cpp')
-rw-r--r-- | util/system/event.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/util/system/event.cpp b/util/system/event.cpp index 998ca978ab..79b3cdb291 100644 --- a/util/system/event.cpp +++ b/util/system/event.cpp @@ -113,15 +113,15 @@ TSystemEvent::TSystemEvent(ResetMode rmode) } TSystemEvent::TSystemEvent(const TSystemEvent& other) noexcept - : EvImpl_(other.EvImpl_) -{ -} - + : EvImpl_(other.EvImpl_) +{ +} + TSystemEvent& TSystemEvent::operator=(const TSystemEvent& other) noexcept { - EvImpl_ = other.EvImpl_; - return *this; -} - + EvImpl_ = other.EvImpl_; + return *this; +} + TSystemEvent::~TSystemEvent() = default; void TSystemEvent::Reset() noexcept { |