-
I have some CMake that integrates `clang-tidy` and `clang-format` into another project. I'll move it over here, too. Any other tool requests?
-
What would it take to support another static analyzer ?
[clazy](https://github.com/KDE/clazy) is a Qt oriented code checker based on clang framework.
It can be used as a clang plugin, via -Xclan…
-
New [bugprone-unhandled-self-assignment check](https://releases.llvm.org/13.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/bugprone-unhandled-self-assignment.html) provides false positives in some…
-
- [X] Add BEEPmbp repo to CODACY
- [ ] Customise the checks to ones we actually care about
- [ ] Add the CODACY link (and badge?) to the README
- [ ] Send clang-tidy results to CODACY through their…
-
We recently noticed some clang-tidy errors that only surfaced after our compiler flags were modified.
I was able to create a minimal reproducible example with the following source file -
``` code.…
-
In our project we use FastDelegate: https://github.com/dreamcat4/FastDelegate/blob/master/FastDelegate.h
When it tries to evaluate an expression that calls `FastDelegate0::operator()()` at line 905/9…
-
Reproduction:
````cpp
// https://compiler-explorer.com/z/95ozGzc7d
// clang++ -std=c++20 -stdlib=libc++ -Weverything -Wno-c++98-compat -Wno-missing-prototypes t.cpp
// clang-tidy -checks=bugpron…
-
Hello! We are interested in adding support for output in the open-standard SARIF format to the clang-tidy, if not yet implemented. SARIF support is required to integrate it in [GitHub code scanning](h…
-
I want to leave only `readability-identifier-naming.HungarianNotation.DerivedType.Pointer`, how can I disable Hungarian notation for primitive types or at least explicitly give them all an empty prefi…
GTruf updated
2 years ago
-
Hi,
I like this check: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/implicit-widening-of-multiplication-result.html
Though in my code base over half of the reported cases are false posi…