diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm index 17d63ce0cf1c..14355d63f290 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -1237,9 +1237,9 @@ template mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); template - constexpr pair // constexpr in C++20 + constexpr pair mismatch(InputIterator1 first1, InputIterator1 last1, - InputIterator2 first2, InputIterator2 last2); // **C++14** + InputIterator2 first2, InputIterator2 last2); // since C++14, constexpr in C++20 template constexpr pair // constexpr in C++20 @@ -1247,19 +1247,19 @@ template InputIterator2 first2, BinaryPredicate pred); template - constexpr pair // constexpr in C++20 + constexpr pair mismatch(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, - BinaryPredicate pred); // **C++14** + BinaryPredicate pred); // since C++14, constexpr in C++20 template constexpr bool // constexpr in C++20 equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2); template - constexpr bool // constexpr in C++20 + constexpr bool equal(InputIterator1 first1, InputIterator1 last1, - InputIterator2 first2, InputIterator2 last2); // **C++14** + InputIterator2 first2, InputIterator2 last2); // since C++14, constexpr in C++20 template constexpr bool // constexpr in C++20 @@ -1267,10 +1267,10 @@ template InputIterator2 first2, BinaryPredicate pred); template - constexpr bool // constexpr in C++20 + constexpr bool equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, - BinaryPredicate pred); // **C++14** + BinaryPredicate pred); // since C++14, constexpr in C++20 template constexpr bool // constexpr in C++20 @@ -1278,9 +1278,9 @@ template ForwardIterator2 first2); template - constexpr bool // constexpr in C++20 + constexpr bool is_permutation(ForwardIterator1 first1, ForwardIterator1 last1, - ForwardIterator2 first2, ForwardIterator2 last2); // **C++14** + ForwardIterator2 first2, ForwardIterator2 last2); // since C++14, constexpr in C++20 template constexpr bool // constexpr in C++20 @@ -1288,10 +1288,10 @@ template ForwardIterator2 first2, BinaryPredicate pred); template - constexpr bool // constexpr in C++20 + constexpr bool is_permutation(ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2, - BinaryPredicate pred); // **C++14** + BinaryPredicate pred); // since C++14, constexpr in C++20 template constexpr ForwardIterator1 // constexpr in C++20