You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
disabled `modernize-use-scoped-lock` clang-tidy warning
disabled `readability-use-concise-preprocessor-directives` clang-tidy warning
disabled `portability-avoid-pragma-once` clang-tidy warning
fixed `readability-math-missing-parentheses` clang-tidy warnings
configured `modernize-use-trailing-return-type` to report it for lambdas only (but do not enable it yet)
fixture.h: suppress acceptable `bugprone-unintended-char-ostream-output` clang-tidy warnings
disabled `-Wms-bitfield-padding` Clang warning for now
compileroptions.cmake: disabled `-Wnrvo` for Clang
clang_tidy.cmake: enabled `clang-analyzer-optin.cplusplus.UninitializedObject` CSA warning since the false positive has been fixed
processexecutor.cpp: fixed `bugprone-unintended-char-ostream-output` clang-tidy warnings
clangimport.cpp: fixed `performance-move-const-arg` clang-tidy warning
updated CI to Clang 21
clang_tidy.cmake: added `run-clang-tidy-21` to binaries to look for
Copy file name to clipboardExpand all lines: clang-tidy.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,6 @@ These are coding guidelines we do not follow. Some of the checks might be explic
33
33
34
34
`readability-braces-around-statements`<br/>
35
35
`readability-isolate-declaration`<br/>
36
-
`modernize-use-trailing-return-type`<br/>
37
36
`readability-uppercase-literal-suffix`<br/>
38
37
`readability-identifier-length`<br/>
39
38
@@ -112,7 +111,11 @@ Also reports a false positive about templates which deduce the array length: htt
112
111
113
112
`misc-include-cleaner`<br/>
114
113
115
-
We run this separately via `clang-include-cleaner` in the `iwyu.yml` workflow as the findings of the include checkers still need to be reviewed manually before applying them.
114
+
We run this separately via `clang-include-cleaner` in the `iwyu.yml` workflow as the findings of the include checkers still need to be reviewed manually before applying them.
message(STATUS"Cannot use non-Clang compiler with clang-tidy when precompiled headers are enabled - skipping 'run-clang-tidy'/'run-clang-tidy-csa' target generation")
0 commit comments