Use constexpr in container algorithm
https://github.com/llvm/llvm-project/blob/main/libcxx/include/algorithm checked with llvm libc++19 and clang19 (only algorithms which support constexpr since c++20)
Interestingly this passes Abseil's tests but breaks almost our entire monorepo in certain cases where operator<=> is defined. I haven't had a chance to dig into why, and I'm not sure I will have time soon.
Interestingly this passes Abseil's tests but breaks almost our entire monorepo in certain cases where operator<=> is defined. I haven't had a chance to dig into why, and I'm not sure I will have time soon.
@derekmauro Hi, can you share some example with compiler/stdlib/std version if possible?
I'm pretty sure the problem is not the fault of your change. I think there are a handful of users that have non-compliant code that I will need to fix first.
Ok, thanks for explaining