diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-05-15 10:38:01 -0700 |
---|---|---|
committer | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-05-15 14:46:59 -0700 |
commit | 7ace54e64bb68c0af3ceff33032e982a9ad1ae58 (patch) | |
tree | 8fe24719561a81190eb46570928c2f2f312b8be8 /libcxx/include/algorithm | |
parent | 2ddfb6161f1d7dd3f253fe44939a3ac6491da8e6 (diff) | |
download | llvm-7ace54e64bb68c0af3ceff33032e982a9ad1ae58.zip llvm-7ace54e64bb68c0af3ceff33032e982a9ad1ae58.tar.gz llvm-7ace54e64bb68c0af3ceff33032e982a9ad1ae58.tar.bz2 |
[libc++][PSTL] Implement std::copy{,_n}
Reviewed By: ldionne, #libc
Spies: jloser, libcxx-commits
Differential Revision: https://reviews.llvm.org/D149706
Diffstat (limited to 'libcxx/include/algorithm')
-rw-r--r-- | libcxx/include/algorithm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/include/algorithm b/libcxx/include/algorithm index 280333e..1902140 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -1801,6 +1801,7 @@ template <class BidirectionalIterator, class Compare> #include <__algorithm/pop_heap.h> #include <__algorithm/prev_permutation.h> #include <__algorithm/pstl_any_all_none_of.h> +#include <__algorithm/pstl_copy.h> #include <__algorithm/pstl_fill.h> #include <__algorithm/pstl_find.h> #include <__algorithm/pstl_for_each.h> |