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
Leads to lots of "false positives". This seem to enforce a coding guidelines of certain codebases.
84
83
85
-
86
84
`bugprone-easily-swappable-parameters`<br/>
87
85
88
86
This produces a lot of noise and they are not fixable that easily.
@@ -121,7 +119,6 @@ We run this separately via `clang-include-cleaner` in the `iwyu.yml` workflow as
121
119
`misc-throw-by-value-catch-by-reference`<br/>
122
120
`readability-avoid-const-params-in-decls`<br/>
123
121
`bugprone-signed-char-misuse`<br/>
124
-
`readability-redundant-access-specifiers`<br/>
125
122
`concurrency-mt-unsafe`<br/>
126
123
`misc-use-anonymous-namespace`<br/>
127
124
`performance-avoid-endl`<br/>
@@ -186,7 +183,7 @@ We are not using SIMD instructions and it suggests to use `std::experiemental::`
186
183
187
184
It does not seem to produce any warnings for us (needs to be investigated) and it is one of the more expensive checks.
188
185
189
-
`misc-unused-using-decls`
186
+
`misc-unused-using-decls`<br/>
190
187
191
188
This is the most expensive check for several files and it is providing much in terms of code quality. Reported upstream as https://github.com/llvm/llvm-project/issues/72300.
0 commit comments