diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-16 02:34:41 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-16 02:34:41 +0000 |
commit | d57c03ddca1cc2d8ceb8c299f58e70f97a60102c (patch) | |
tree | 1070095cb7c62a9a0a07fe2fffc7f59f5cf48f80 /libcxx/test/std/algorithms/alg.nonmodifying | |
parent | a38c495f2239c4750a4d89d9d0343f3755f99acd (diff) | |
download | bcm5719-llvm-d57c03ddca1cc2d8ceb8c299f58e70f97a60102c.tar.gz bcm5719-llvm-d57c03ddca1cc2d8ceb8c299f58e70f97a60102c.zip |
More constexpr algorithms from P0202: lower_bound, upper_bound, equal_range, binary_search
llvm-svn: 322529
Diffstat (limited to 'libcxx/test/std/algorithms/alg.nonmodifying')
-rw-r--r-- | libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp index e725e4ada65..656c7310f4d 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp @@ -14,7 +14,7 @@ // constexpr bool // constexpr after c++17 // equal(Iter1 first1, Iter1 last1, Iter2 first2); // -// Introduced in C++14: +// Introduced in C++14: // template<InputIterator Iter1, InputIterator Iter2> // constexpr bool // constexpr after c++17 // equal(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2); diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp index 53f52e0e370..c6bb06baf80 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp @@ -15,7 +15,7 @@ // constexpr bool // constexpr after c++17 // equal(Iter1 first1, Iter1 last1, Iter2 first2, Pred pred); // -// Introduced in C++14: +// Introduced in C++14: // template<InputIterator Iter1, InputIterator Iter2, // Predicate<auto, Iter1::value_type, Iter2::value_type> Pred> // requires CopyConstructible<Pred> |