diff options
author | pavelgur <[email protected]> | 2022-02-10 16:50:19 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:19 +0300 |
commit | 173c6a0fa7f439b2c207c2f258e52ccb4ac181cf (patch) | |
tree | ccc1431399e20197a8533f3d4bd0eb9a4bb8db62 /util/generic/noncopyable.h | |
parent | da16e7702d9b0a8a42761ad877f102ef6aa85ec0 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/noncopyable.h')
-rw-r--r-- | util/generic/noncopyable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/noncopyable.h b/util/generic/noncopyable.h index c007934133b..c4a1143f8b0 100644 --- a/util/generic/noncopyable.h +++ b/util/generic/noncopyable.h @@ -23,8 +23,8 @@ namespace NNonCopyable { // protection from unintended ADL }; struct TMoveOnly { - TMoveOnly(TMoveOnly&&) noexcept = default; - TMoveOnly& operator=(TMoveOnly&&) noexcept = default; + TMoveOnly(TMoveOnly&&) noexcept = default; + TMoveOnly& operator=(TMoveOnly&&) noexcept = default; TMoveOnly(const TMoveOnly&) = delete; TMoveOnly& operator=(const TMoveOnly&) = delete; |