summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-09-24 17:28:25 -0400
committerBrad King <brad.king@kitware.com>2018-09-24 17:29:15 -0400
commit1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0 (patch)
tree64da42f79b5d02fec430ffa1f2950cdf9feb14b6 /.clang-tidy
parent03ffd442bd34e2a3478b125ef1055837926bcd0c (diff)
downloadcmake-1fe0d72eb6aef12148be0b37d73cf31fbd5f9ca0.tar.gz
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-tidy1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 8d79b0c5d4..ebe3c20dc7 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,\