[Lldb-commits] [clang-tools-extra] [flang] [libunwind] [libc] [llvm] [lldb] [libcxx] [compiler-rt] [clang] [libc++] Implement ranges::iota (PR #68494)
Christopher Di Bella via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 5 14:16:04 PST 2024
================
@@ -1149,9 +1171,11 @@ struct Proxy {
// Calling swap(Proxy<T>{}, Proxy<T>{}) would fail (pass prvalues)
// Compare operators are defined for the convenience of the tests
- friend constexpr bool operator==(const Proxy&, const Proxy&)
- requires (std::equality_comparable<T> && !std::is_reference_v<T>)
- = default;
+ friend constexpr bool operator==(const Proxy& lhs, const Proxy& rhs)
+ requires(std::equality_comparable<T> && !std::is_reference_v<T>)
+ {
+ return lhs.data == rhs.data;
+ };
----------------
cjdb wrote:
What is the intention of this change?
https://github.com/llvm/llvm-project/pull/68494
More information about the lldb-commits
mailing list