mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
clang-tidy: restore 'misc-noexcept-move-constructor'
We disabled this in commit 1fe0d72eb6 (clang-tidy: exclude
'misc-noexcept-move-constructor', 2018-09-24) due to false positives.
Restore it and use a NOLINT comment to suppress them instead.
This commit is contained in:
@@ -124,9 +124,11 @@ public:
|
||||
|
||||
// Backtraces may be copied, moved, and assigned as values.
|
||||
cmListFileBacktrace(cmListFileBacktrace const&) = default;
|
||||
cmListFileBacktrace(cmListFileBacktrace&&) noexcept = default;
|
||||
cmListFileBacktrace(cmListFileBacktrace&&) // NOLINT(clang-tidy)
|
||||
noexcept = default;
|
||||
cmListFileBacktrace& operator=(cmListFileBacktrace const&) = default;
|
||||
cmListFileBacktrace& operator=(cmListFileBacktrace&&) noexcept = default;
|
||||
cmListFileBacktrace& operator=(cmListFileBacktrace&&) // NOLINT(clang-tidy)
|
||||
noexcept = default;
|
||||
~cmListFileBacktrace() = default;
|
||||
|
||||
cmStateSnapshot GetBottom() const;
|
||||
|
||||
Reference in New Issue
Block a user