From efc6f6e1ae714f7471ebefbfaa21699214111d81 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 15 Jul 2020 14:23:51 +0200 Subject: [PATCH] Clang-Tidy: ignore some newer checks Those checks have been added to clang tidy within the last year. They fail when I use a clang tidy version I built from source. Reviewers: sergey Differential Revision: https://developer.blender.org/D8302 --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index ad8a89cab87..7cf2830d438 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -23,12 +23,14 @@ Checks: > -readability-static-accessed-through-instance, -readability-redundant-declaration, -readability-qualified-auto, + -readability-use-anyofallof, bugprone-*, -bugprone-narrowing-conversions, -bugprone-unhandled-self-assignment, -bugprone-branch-clone, -bugprone-macro-parentheses, + -bugprone-reserved-identifier, -bugprone-sizeof-expression, -bugprone-integer-division,