summaryrefslogtreecommitdiff
path: root/libcxx/include/algorithm
diff options
context:
space:
mode:
authorNikolas Klauser <n_klauser@apple.com>2023-04-27 16:28:22 -0700
committerNikolas Klauser <n_klauser@apple.com>2023-05-01 09:04:29 -0700
commit824391693cbbd4cf93310ac25edd354c8e74a522 (patch)
treea65d681ec31384eff242afe978e01d5319769702 /libcxx/include/algorithm
parent89a44b0faee0ca6b741e1f0ef31163374887b6ed (diff)
[libc++][PSTL] Implement std::find{,_if,_if_not}
Reviewed By: ldionne, #libc Spies: libcxx-commits Differential Revision: https://reviews.llvm.org/D149539
Diffstat (limited to 'libcxx/include/algorithm')
-rw-r--r--libcxx/include/algorithm1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm
index 611c639c3b6c..ed3bc05c8932 100644
--- a/libcxx/include/algorithm
+++ b/libcxx/include/algorithm
@@ -1910,6 +1910,7 @@ template <class BidirectionalIterator, class Compare>
#ifdef _LIBCPP_HAS_PARALLEL_ALGORITHMS
# include <__algorithm/pstl_any_all_none_of.h>
+# include <__algorithm/pstl_find.h>
# include <__algorithm/pstl_for_each.h>
#endif