diff options
author | ddoarn <ddoarn@yandex-team.ru> | 2022-02-10 16:49:53 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:53 +0300 |
commit | 3bf10d3f40b502d181ef52f5c4602c98cb135360 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic | |
parent | 0783fe3f48d91a3b741ce2ea32b11fbfc1637e7e (diff) | |
download | ydb-3bf10d3f40b502d181ef52f5c4602c98cb135360.tar.gz |
Restoring authorship annotation for <ddoarn@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic')
-rw-r--r-- | util/generic/vector.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/vector.h b/util/generic/vector.h index 7135d0af48..a5b258955a 100644 --- a/util/generic/vector.h +++ b/util/generic/vector.h @@ -68,7 +68,7 @@ public: } inline TVector(const TSelf& src) - : TBase(src) + : TBase(src) { } @@ -83,10 +83,10 @@ public: { } - inline TSelf& operator=(const TSelf& src) { - TBase::operator=(src); - return *this; - } + inline TSelf& operator=(const TSelf& src) { + TBase::operator=(src); + return *this; + } inline TSelf& operator=(TSelf&& src) noexcept { TBase::operator=(std::forward<TSelf>(src)); |