[libcxx-commits] [PATCH] D152615: [libc++][spaceship] P1614R2: Removed ops from `complex`
Hristo Hristov via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Jun 10 06:38:30 PDT 2023
H-G-Hristov added a comment.
@Mordante Thank you for the review. I'll update the patches and do more of them after we land D152297 <https://reviews.llvm.org/D152297>.
================
Comment at: libcxx/include/complex:153
+template<class T> bool operator==(const complex<T>&, const T&); // constexpr in C++14
+template<class T> bool operator==(const T&, const complex<T>&); // removed in C++20
+template<class T> bool operator!=(const complex<T>&, const complex<T>&); // removed in C++20
----------------
Mordante wrote:
> We keep all information.
Thank you for letting me know, I haven't seen this before.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D152615/new/
https://reviews.llvm.org/D152615
More information about the libcxx-commits
mailing list