diff options
author | Brad King <brad.king@kitware.com> | 2018-09-24 21:28:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-09-24 21:29:15 (GMT) |
commit | 1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0 (patch) | |
tree | 64da42f79b5d02fec430ffa1f2950cdf9feb14b6 /.clang-tidy | |
parent | 03ffd442bd34e2a3478b125ef1055837926bcd0c (diff) | |
download | CMake-1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0.zip CMake-1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0.tar.gz CMake-1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0.tar.bz2 |
clang-tidy: exclude 'misc-noexcept-move-constructor'
Our installation is producing false positives on move constructors
and assignment operators that are clearly marked `noexcept`.
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 8d79b0c..ebe3c20 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -5,6 +5,7 @@ misc-*,\ -misc-incorrect-roundings,\ -misc-macro-parentheses,\ -misc-misplaced-widening-cast,\ +-misc-noexcept-move-constructor,\ -misc-static-assert,\ modernize-*,\ -modernize-deprecated-headers,\ |