summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-31 16:13:41 +0000
committerKitware Robot <kwrobot@kitware.com>2019-01-31 11:14:21 -0500
commitdc9f4f9eca3ee046bbb2f974ab9ae9af7ffc46cf (patch)
tree692c87ee7b1ba11317dc29dbfced92a349820a9f /.clang-tidy
parentfb823855158855b6c967ef8dc7947762c097f914 (diff)
parent3f9822ff6d2e38ef9aedc54d654e3afc635596fd (diff)
downloadcmake-dc9f4f9eca3ee046bbb2f974ab9ae9af7ffc46cf.tar.gz
Merge topic 'tidy-use-equals-default-fix'
3f9822ff6d clang-tidy: Silence use-equals-default warning Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2887
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy2
1 files changed, 2 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 470add6350..520b1a9e39 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -33,4 +33,6 @@ HeaderFilterRegex: 'Source/cm[^/]*\.(h|hxx|cxx)$'
CheckOptions:
- key: modernize-use-default-member-init.UseAssignment
value: '1'
+ - key: modernize-use-equals-default.IgnoreMacros
+ value: '0'
...