[libcxx-commits] [PATCH] D110738: [libc++] [P1614] Implement the first half of [cmp.alg]: strong_order, weak_order, partial_order.
Arthur O'Dwyer via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Sep 29 10:39:02 PDT 2021
Quuxplusone added inline comments.
================
Comment at: libcxx/include/__utility/priority_tag.h:21-22
+
+template<size_t _Ip> struct _PriorityTag : _PriorityTag<_Ip - 1> {};
+template<> struct _PriorityTag<0> {};
+
----------------
It probably makes sense to rename this from `_PriorityTag` to `__priority_tag`, especially in light of the `_EnableIf` renaming. @ldionne, opinion?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110738/new/
https://reviews.llvm.org/D110738
More information about the libcxx-commits
mailing list