-
This looks like an infinite recursion leading to stack overflow.
```
[...]clang_tidy: Segmentation fault (core dumped)
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issu…
layus updated
3 weeks ago
-
Great project, thanks!
I'm using the following setup with the latest HEAD and bazel 7.3.1.
```
//.bazelrc
build:clang-tidy --aspects @bazel_clang_tidy//clang_tidy:clang_tidy.bzl%clang_tidy_asp…
-
Where is the release notes for upcoming v19? For clang, clang-tidy. I have a problem to find the release notes for the upcoming version every time, there are release notes for all previous versions [h…
-
When I open `libtransmission/utils.h` in an editor, I see that the deleted methods in `tr_net_init_mgr` generate these warnings:
```
W tr_net_init_mgr(tr_net_init_mgr&&) = delete; /* W: delete…
ckerr updated
2 weeks ago
-
# Two major warning cases found on 20240106
According to CMU SEI C/C++ Coding Standards:
## [ERR33-C. Detect and handle standard library errors](https://wiki.sei.cmu.edu/confluence/display/c/ERR…
-
### Reproduction steps
New version of clang-tidy avaliable with latest pigweed version, found new types of errors:
- `bugprone-pointer-arithmetic-on-polymorphic-object` - error:
```
2024-08-19 0…
-
### Feature Request
The proper way for extensions to add linting fixes (not formatting fixes) is to add entries like this in the VS Code config:
```jsonc
"editor.codeActionsOnSave": {
"s…
-
Use clang-tidy or another static analysis tool to increase the safety/reliability of our C++ codebase.
-
**Is your feature request related to a problem? Please describe.**
C++ is an inherently complex language and has countless footguns. Currently there are no safeguards against this and bug lifetime is…
-
Add a check to suggest adding `constexpr` to variables and functions to the extent that each standard version allows. Using `constexpr` can, e.g., potentially uncover UB in code, as that is not permit…