| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
return lhs.frame_count == rhs.frame_count &&
base::span(lhs.frames).first(lhs.frame_count) ==
base::span(rhs.frames).first(rhs.frame_count);can we just use
```
return std::ranges::equal(
base::span(lhs.frames).first(lhs.frame_count),
base::span(rhs.frames).first(rhs.frame_count));
```
Which will check that `lhs.frame_count == rhs.frame_count` as well?
As per https://en.cppreference.com/w/cpp/algorithm/ranges/equal.html
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
return lhs.frame_count == rhs.frame_count &&
base::span(lhs.frames).first(lhs.frame_count) ==
base::span(rhs.frames).first(rhs.frame_count);can we just use
```
return std::ranges::equal(
base::span(lhs.frames).first(lhs.frame_count),
base::span(rhs.frames).first(rhs.frame_count));
```Which will check that `lhs.frame_count == rhs.frame_count` as well?
As per https://en.cppreference.com/w/cpp/algorithm/ranges/equal.html
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
spanification: automatically spanify base/trace_event/heap_profiler_allocation_context.cc etc.
This is the result of running the automatic spanification on linux and
updating code to use and pass spans where size is known.
The original patch was fully automated using script:
//tools/clang/spanify/rewrite-multiple-platforms.sh -platforms=linux
Then refined with gemini-cli
gemini-run/batch-run-1761798078/group_85
BUG=439964610
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |