-
Hi!
Just read your [article](https://blog.yossarian.net/2024/10/27/Now-you-can-have-beautiful-clean-workflows) about the tool - I highly appreciate such a tool since I am also a person who is inter…
-
Is there a `ignore` options for ignore check rule for clang-tidy?
cxwx updated
7 months ago
-
| | |
| --- | --- |
| Bugzilla Link | [35021](https://llvm.org/bz35021) |
| Version | unspecified |
| OS | Linux |
| Attachments | [CMAKE compile commands](https://user-images.githubusercontent.com/…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR43816](https://bugs.llvm.org/show_bug.cgi?id=43816) |
| Status | NEW |
| Importance | P enhancemen…
-
https://clang.llvm.org/extra/clang-tidy/checks/readability-const-return-type.html says that this check might help with performance problems, hence it might be useful as performance check. I suggest to…
-
| | |
| --- | --- |
| Bugzilla Link | [38510](https://llvm.org/bz38510) |
| Version | unspecified |
| OS | Linux |
| Reporter | LLVM Bugzilla Contributor |
| CC | @JonasToth,@EugeneZelenko |
## Ext…
-
```
❌ Failures for clang-tidy on /b/s/w/ir/cache/builder/src/flutter/flow/layers/layer_raster_cache_item.cc:
/b/s/w/ir/cache/builder/src/flutter/flow/layers/layer_raster_cache_item.cc:143:28: error:…
-
All BMC downstream repos should generate UT coverage report using upstream script, but there are problems with analyzes. There is no coverage report if the previous analyzes fail.
1. clang-tidy
W…
-
clang-tidy-9 finds
```
filterwidgets.cc:96:3: warning: Call to virtual function during construction [clang-analyzer-optin.cplusplus.VirtualCall]
checkChecks();
^
filterwidgets.cc:96:3: note: …
-
```c
#define foo 1
int bar(void) {
return foo;
}
```
should translate to:
```zig
const foo = 1;
fn bar() -> c_int {
return foo;
}
```
clue:
```
using the libclang API is …