You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upstream has abandoned its in-house implementation of `base::ranges`,
and all cases now merely alias back to the upstream implementation. This
has caused some build failures, as in certain cases the implementation
in `base` didn't quite match what was being done in `std`.
Chromium change:
https://chromium.googlesource.com/chromium/src/+/7be06d9af3db3b022636d5f597353d9d89207427
commit 7be06d9af3db3b022636d5f597353d9d89207427
Author: Peter Kasting <pkasting@chromium.org>
Date: Thu Jan 23 12:33:52 2025 -0800
Make base::ranges equivalent to std::ranges.
This prevents backsliding while rewriting the codebase to explicitly
spell the latter.
Bug: 386918226
Resolvesbrave/brave-browser#43566
Upstream has abandoned its in-house implementation of `base::ranges`,
and all cases now merely alias back to the upstream implementation. This
has caused some build failures, as in certain cases the implementation
in `base` didn't quite match what was being done in `std`.
Chromium change:
https://chromium.googlesource.com/chromium/src/+/7be06d9af3db3b022636d5f597353d9d89207427
commit 7be06d9af3db3b022636d5f597353d9d89207427
Author: Peter Kasting <pkasting@chromium.org>
Date: Thu Jan 23 12:33:52 2025 -0800
Make base::ranges equivalent to std::ranges.
This prevents backsliding while rewriting the codebase to explicitly
spell the latter.
Bug: 386918226
Resolvesbrave/brave-browser#43566
Description
Not all occurrences of
base::ranges
can be just replaced withstd::ranges
without build failures, and those should be merged first.The text was updated successfully, but these errors were encountered: