[libcxx-commits] [PATCH] D84372: Made internal function constexpr
Nicholas Baron via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 22 17:11:33 PDT 2020
Nicholas-Baron created this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D84372
Files:
libcxx/include/algorithm
Index: libcxx/include/algorithm
===================================================================
--- libcxx/include/algorithm
+++ libcxx/include/algorithm
@@ -4370,6 +4370,7 @@
// merge
template <class _Compare, class _InputIterator1, class _InputIterator2, class _OutputIterator>
+_LIBCPP_CONSTEXPR_AFTER_CXX17
_OutputIterator
__merge(_InputIterator1 __first1, _InputIterator1 __last1,
_InputIterator2 __first2, _InputIterator2 __last2, _OutputIterator __result, _Compare __comp)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D84372.279976.patch
Type: text/x-patch
Size: 499 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200723/ac10ac6a/attachment.bin>
More information about the libcxx-commits
mailing list