[libcxx-commits] [PATCH] D132312: [libc++][spaceship] Implement `operator<=>` for `list`

Adrian Vogelsgesang via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Feb 27 15:37:35 PST 2023


avogelsgesang marked an inline comment as done.
avogelsgesang added inline comments.


================
Comment at: libcxx/include/list:2345
+{
+    return lexicographical_compare_three_way(
+        __x.begin(), __x.end(), __y.begin(), __y.end(), __synth_three_way);
----------------
ldionne wrote:
> This should fix your CI issue with clang-tidy.
yes, I think so, too. Happy we have the ADL test cases nowadays!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D132312/new/

https://reviews.llvm.org/D132312



More information about the libcxx-commits mailing list