diff options
author | tobo <[email protected]> | 2022-02-28 12:04:09 +0300 |
---|---|---|
committer | tobo <[email protected]> | 2022-02-28 12:04:09 +0300 |
commit | f23d808d6c8b0f50c51b44baad1f919cab389cde (patch) | |
tree | ee9e3d708973bee4d463605de2414bbf7946d853 /util/system/mutex.cpp | |
parent | fe01c5041a843ee05cf4bf58b020eba53b909caf (diff) |
clang-tidy - move-constructor and move-assignment operators should be marked noexcept + pass some args by reference
ref:5da43163e6b3c2499597234dc80ad47042259013
Diffstat (limited to 'util/system/mutex.cpp')
-rw-r--r-- | util/system/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/mutex.cpp b/util/system/mutex.cpp index 4041402db9a..acb6e87a1b0 100644 --- a/util/system/mutex.cpp +++ b/util/system/mutex.cpp @@ -125,7 +125,7 @@ TMutex::TMutex() { } -TMutex::TMutex(TMutex&&) = default; +TMutex::TMutex(TMutex&&) noexcept = default; TMutex::~TMutex() = default; |