diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-01-15 17:53:34 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-01-15 17:53:34 +0000 |
commit | 674f9128b7520ad43d3358724baf0f89baeeda02 (patch) | |
tree | a88aec995d8413689bc8df3df079760f9832a2d8 /libcxx/test/std/algorithms/alg.nonmodifying | |
parent | 706ffef713a394b264ca1d4e8b8fa8d1aa38095b (diff) | |
download | bcm5719-llvm-674f9128b7520ad43d3358724baf0f89baeeda02.tar.gz bcm5719-llvm-674f9128b7520ad43d3358724baf0f89baeeda02.zip |
partition_point gets the P0202 treatment
llvm-svn: 322493
Diffstat (limited to 'libcxx/test/std/algorithms/alg.nonmodifying')
-rw-r--r-- | libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp index 5896b40ae96..0a5998105ef 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp @@ -10,7 +10,7 @@ // <algorithm> // template <class InputIterator, class Predicate> -// bool +// constpexr bool // constexpr after C++17 // all_of(InputIterator first, InputIterator last, Predicate pred); #include <algorithm> diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp index 5256270a381..d21a691e7b3 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp @@ -10,7 +10,7 @@ // <algorithm> // template <class InputIterator, class Predicate> -// bool +// constpexr bool // constexpr after C++17 // any_of(InputIterator first, InputIterator last, Predicate pred); #include <algorithm> |