diff options
| author | ddoarn <[email protected]> | 2022-02-10 16:49:52 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:52 +0300 | 
| commit | 0783fe3f48d91a3b741ce2ea32b11fbfc1637e7e (patch) | |
| tree | 6d6a79d83e5003eaf4d45cac346113c1137cb886 /util/generic | |
| parent | 9541fc30d6f0877db9ff199a16f7fc2505d46a5c (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 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 a5b258955a8..7135d0af483 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)); | 
