[libcxx-commits] [PATCH] D74186: Removing *_equality and simplifying comparisons.

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 4 08:25:01 PST 2020


ldionne requested changes to this revision.
ldionne added inline comments.
This revision now requires changes to proceed.


================
Comment at: libcxx/include/compare:72
 enum class _LIBCPP_ENUM_VIS _NCmpResult : signed char {
-  __unordered = -127
+  __unordered = 2
 };
----------------
Why is this changed to `2`, and why was it `-127` before? Sorry, I'm missing context on the history of this header (which was originally implemented by @EricWF)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D74186





More information about the libcxx-commits mailing list