[Bf-blender-cvs] [9159295c3c3] master: Clang Tidy: ignore some passes that changed or were added in version 13

Jacques Lucke noreply at git.blender.org
Tue Nov 23 19:45:14 CET 2021


Commit: 9159295c3c362f2f09cda8800418f003cfc206e0
Author: Jacques Lucke
Date:   Tue Nov 23 19:45:05 2021 +0100
Branches: master
https://developer.blender.org/rB9159295c3c362f2f09cda8800418f003cfc206e0

Clang Tidy: ignore some passes that changed or were added in version 13

I get hundreds of clang-tidy errors without ignoring those passes right now.
To not forget about the passes, I added them to T78535.

===================================================================

M	.clang-tidy

===================================================================

diff --git a/.clang-tidy b/.clang-tidy
index b03163b54b9..1cc0e6e7f4a 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -12,6 +12,8 @@ Checks:  >
   -readability-avoid-const-params-in-decls,
   -readability-simplify-boolean-expr,
   -readability-make-member-function-const,
+  -readability-suspicious-call-argument,
+  -readability-redundant-member-init,
 
   -readability-misleading-indentation,
 
@@ -25,6 +27,8 @@ Checks:  >
   -bugprone-branch-clone,
   -bugprone-macro-parentheses,
   -bugprone-reserved-identifier,
+  -bugprone-easily-swappable-parameters,
+  -bugprone-implicit-widening-of-multiplication-result,
 
   -bugprone-sizeof-expression,
   -bugprone-integer-division,
@@ -40,7 +44,8 @@ Checks:  >
   -modernize-pass-by-value,
   # Cannot be enabled yet, because using raw string literals in tests breaks
   # the windows compiler currently.
-  -modernize-raw-string-literal
+  -modernize-raw-string-literal,
+  -modernize-return-braced-init-list
 
 CheckOptions:
   - key: modernize-use-default-member-init.UseAssignment



More information about the Bf-blender-cvs mailing list