| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Build mini_chromium with C++23
For consistency with crrev.com/c/7170560. //base will soon use
C++23 features, so this change is required for mini_chromium to keep
building.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
This change is fine, but keep in mind that minu_chromium will not automatically require C++23 just because Chromium base does. mini_chromium is permitted (and often encouraged) to use different implementations than Chromium base. It's not a direct copy of base.
What is important is that mini_chromium remain interface-compatible with the Chromium base interfaces that it implements. So this change to use C++23 for mini_chromium and thus Crashpad is mostly important if any of those interfaces will be changing in a way that depends on C++23. I don't know what the C++23 migration plans are, but it's possible that there won't be any such changes, at least not for a while.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |