diff options
author | Brad King <brad.king@kitware.com> | 2017-09-28 11:19:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-09-28 11:19:27 (GMT) |
commit | 7cf089fcbf527e13446a856b1c1e49542040f080 (patch) | |
tree | 4a1fb147d7ab9cba88849416ee000516adfd51c5 /.clang-tidy | |
parent | 76c634c4ac0f2d95babe04fa04e85d4c9fdeae23 (diff) | |
download | CMake-7cf089fcbf527e13446a856b1c1e49542040f080.zip CMake-7cf089fcbf527e13446a856b1c1e49542040f080.tar.gz CMake-7cf089fcbf527e13446a856b1c1e49542040f080.tar.bz2 |
clang-tidy: exclude 'modernize-use-noexcept' introduced in 5.0.0
We still support compiling CMake on VS 2013 that does not support
`noexcept`, so disable the clang-tidy diagnostic for now.
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 3c400a3..8d79b0c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -16,6 +16,7 @@ modernize-*,\ -modernize-use-emplace,\ -modernize-use-equals-default,\ -modernize-use-equals-delete,\ +-modernize-use-noexcept,\ -modernize-use-transparent-functors,\ -modernize-use-using,\ performance-*,\ |