summaryrefslogtreecommitdiff
path: root/libcxx/include/algorithm
diff options
context:
space:
mode:
authorNikolas Klauser <n_klauser@apple.com>2023-06-06 08:43:22 -0700
committerNikolas Klauser <nikolasklauser@berlin.de>2023-06-06 08:44:53 -0700
commit51131edf83e4d560f19474b8147efc5fc1118295 (patch)
tree3b3e2942deecdfe60fe4fce24b4f7c99187f25f6 /libcxx/include/algorithm
parent7a3b528e1b540b4c98f4b557f917447481872749 (diff)
[libc++][PSTL] Implement std::replace{,_if,_copy,_copy_if}
Reviewed By: #libc, ldionne Spies: ldionne, libcxx-commits Differential Revision: https://reviews.llvm.org/D151841
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 04a21c040ef8..2ceedc97ae39 100644
--- a/libcxx/include/algorithm
+++ b/libcxx/include/algorithm
@@ -1807,6 +1807,7 @@ template <class BidirectionalIterator, class Compare>
#include <__algorithm/pstl_find.h>
#include <__algorithm/pstl_for_each.h>
#include <__algorithm/pstl_merge.h>
+#include <__algorithm/pstl_replace.h>
#include <__algorithm/pstl_stable_sort.h>
#include <__algorithm/pstl_transform.h>
#include <__algorithm/push_heap.h>