diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-06-01 15:05:11 -0700 |
---|---|---|
committer | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-06-01 15:07:28 -0700 |
commit | d51a84b4059c89b5647855781e13f49f47356c17 (patch) | |
tree | 66cade6c5d9d32d25e1a41995e84bd11e55227cc /libcxx/include/algorithm | |
parent | 722832e6d764748f8ee167c95370e043594ef995 (diff) | |
download | llvm-d51a84b4059c89b5647855781e13f49f47356c17.zip llvm-d51a84b4059c89b5647855781e13f49f47356c17.tar.gz llvm-d51a84b4059c89b5647855781e13f49f47356c17.tar.bz2 |
[libc++][PSTL] Implement std::stable_sort
Reviewed By: #libc, ldionne
Spies: ldionne, libcxx-commits
Differential Revision: https://reviews.llvm.org/D151573
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 0f52da9..24d29fd 100644 --- a/libcxx/include/algorithm +++ b/libcxx/include/algorithm @@ -1806,6 +1806,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_stable_sort.h> #include <__algorithm/pstl_transform.h> #include <__algorithm/push_heap.h> #include <__algorithm/ranges_adjacent_find.h> |