schenker wrote:

I got some fixits that do not compile, e.g.:
```
std::erase_if(numbers, [](int n) {
return n % 2 == 0;
});
```
is changed into
```
std::erase_if(numbers, [](int nconstexpr ) {
return n % 2 == 0;
});
```

https://github.com/llvm/llvm-project/pull/146553
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to