Commit db759b6
committed
⬆️ Update stdx
Problem:
- LLVM18 clang-tidy flags `handled` as able to be declared `const`. This is
wrong, but what we're actually doing here is better expressed as
`transform_reduce` on the bitset.
Solution:
- Use `transform_reduce`.
Note:
- `transform_reduce` is the operation here because we do not want to shortcut
handling the message. `any_of` would be correct for that use case.1 parent faedd52 commit db759b6
2 files changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
53 | | - | |
54 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| |||
0 commit comments