[libcxx-commits] [PATCH] D80904: [libcxx] adds spaceship for vector

Michael Schellenberger Costa via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jun 1 10:46:10 PDT 2020


miscco added inline comments.


================
Comment at: libcxx/include/compare:686
+    } else {
+        if (t < u) return weak_ordering::less;
+        if (u < t) return weak_ordering::greater;
----------------
cjdb wrote:
> miscco wrote:
> > I have to look it up but what about string orderings here?
> See http://eel.is/c++draft/expos.only.func#2.
Thanks a lot, I thought I read it in some blog, but that is way better


Repository:
  rCXX libc++

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

https://reviews.llvm.org/D80904





More information about the libcxx-commits mailing list