https://github.com/PiotrZSL approved this pull request.
Change looks correct, but looks like this check got one more limitation in case
of code like this:
```
class CastInit {
CastInit() : m(static_cast<int>(9)) {}
int m = 9;
};
```
And this:
```
```
class CastInit {
CastInit() : m(static_cast<int>(0)) {}
int m {};
};
```
```
https://github.com/llvm/llvm-project/pull/129408
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits