[libcxx-commits] [PATCH] D132312: [libc++][spaceship] Implement `operator<=>` for `list`
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Feb 27 10:06:55 PST 2023
ldionne accepted this revision.
ldionne added a comment.
LGTM w/ green CI. Thanks!
================
Comment at: libcxx/include/list:2345
+{
+ return lexicographical_compare_three_way(
+ __x.begin(), __x.end(), __y.begin(), __y.end(), __synth_three_way);
----------------
This should fix your CI issue with clang-tidy.
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