Skip to content

Commit 1de3fd8

Browse files
committed
CI fixes
1 parent e752ad8 commit 1de3fd8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

libcxx/test/benchmarks/algorithms/sorting/is_sorted.bench.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <algorithm>
1212
#include <cstddef>
1313
#include <deque>
14+
#include <iterator>
1415
#include <list>
1516
#include <string>
1617
#include <vector>

libcxx/test/benchmarks/algorithms/sorting/is_sorted_until.bench.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <algorithm>
1212
#include <cstddef>
1313
#include <deque>
14+
#include <iterator>
1415
#include <list>
1516
#include <string>
1617
#include <vector>

libcxx/test/benchmarks/algorithms/sorting/stable_sort.bench.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ int main(int argc, char** argv) {
7777
bm.operator()<std::deque<int>>("rng::stable_sort(deque<int>) (" #name ")", std::ranges::stable_sort, gen1); \
7878
} while (false)
7979

80-
BENCH(support::quickstable_sort_adversarial_data, "qstable_sort adversarial");
81-
BENCH(support::ascending_stable_sorted_data, "ascending");
82-
BENCH(support::descending_stable_sorted_data, "descending");
80+
BENCH(support::quicksort_adversarial_data, "qsort adversarial");
81+
BENCH(support::ascending_sorted_data, "ascending");
82+
BENCH(support::descending_sorted_data, "descending");
8383
BENCH(support::pipe_organ_data, "pipe-organ");
8484
BENCH(support::heap_data, "heap");
8585
BENCH(support::shuffled_data, "shuffled");

0 commit comments

Comments
 (0)