-
| | |
|--------------------|----|
| Bugzilla Link | [PR49361](https://bugs.llvm.org/show_bug.cgi?id=49361) |
| Status | NEW |
| Importance | P normal |
|…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR34701](https://bugs.llvm.org/show_bug.cgi?id=34701) |
| Status | NEW |
| Importance | P enhancemen…
-
The clang-tidy check `bugprone-exception-escape` should ignore the `consteval` functions. These are only executed at compile time and if they throw an exception the compilation fails.
```cpp
const…
-
Observations based on `clang-tidy` label.
Tickets which are tagged by the `github-actions` bot do not seem to generate notifications as there is no comment by the `llvmbot`: #104434.
If you tag …
-
| | |
| --- | --- |
| Bugzilla Link | [41460](https://llvm.org/bz41460) |
| Version | unspecified |
| OS | Linux |
| Attachments | [clang build log on Archlinux32](https://user-images.githubusercont…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR22165](https://bugs.llvm.org/show_bug.cgi?id=22165) |
| Status | NEW |
| Importance | P enhancemen…
-
| | |
| --- | --- |
| Bugzilla Link | [39144](https://llvm.org/bz39144) |
| Version | 7.0 |
| OS | Linux |
| Attachments | [Code as described in the bug](https://user-images.githubusercontent.com/60…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR45046](https://bugs.llvm.org/show_bug.cgi?id=45046) |
| Status | NEW |
| Importance | P enhancemen…
-
The template project still needs plenty of documentation to explain what each bit is doing:
- [x] CMakeLists.txt
- [x] MyLibrary.{cpp,hpp}
- [x] MyTests.cpp
- [x] travis.yml
- [x] appveyor.yml
…
-
I'd like an option for clang tidy's `cppcoreguidelines-init-variables` checker that provides fixes with an initializer list when possible.
Example:
```c++
int main()
{
// int var;
// …