Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions libcxx/include/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -543,11 +543,17 @@ module std [system] {
}
module ranges_fill_n { header "__algorithm/ranges_fill_n.h" }
module ranges_fill { header "__algorithm/ranges_fill.h" }
module ranges_find_end { header "__algorithm/ranges_find_end.h" }
module ranges_find_end {
header "__algorithm/ranges_find_end.h"
export std.ranges.subrange // return type
}
module ranges_find_first_of { header "__algorithm/ranges_find_first_of.h" }
module ranges_find_if_not { header "__algorithm/ranges_find_if_not.h" }
module ranges_find_if { header "__algorithm/ranges_find_if.h" }
module ranges_find_last { header "__algorithm/ranges_find_last.h" }
module ranges_find_last {
header "__algorithm/ranges_find_last.h"
export std.ranges.subrange // return type
}
module ranges_find { header "__algorithm/ranges_find.h" }
module ranges_fold { header "__algorithm/ranges_fold.h" }
module ranges_for_each_n {
Expand Down Expand Up @@ -737,8 +743,14 @@ module std [system] {
}
module ranges_rotate { header "__algorithm/ranges_rotate.h" }
module ranges_sample { header "__algorithm/ranges_sample.h" }
module ranges_search_n { header "__algorithm/ranges_search_n.h" }
module ranges_search { header "__algorithm/ranges_search.h" }
module ranges_search_n {
header "__algorithm/ranges_search_n.h"
export std.ranges.subrange // return type
}
module ranges_search {
header "__algorithm/ranges_search.h"
export std.ranges.subrange // return type
}
module ranges_set_difference {
header "__algorithm/ranges_set_difference.h"
export std.functional.ranges_operations
Expand Down
1 change: 1 addition & 0 deletions libcxx/test/benchmarks/GenerateInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <climits>
#include <concepts>
#include <cstddef>
#include <initializer_list>
#include <random>
#include <string>
#include <vector>
Expand Down
37 changes: 0 additions & 37 deletions libcxx/test/benchmarks/algorithms/count.bench.cpp

This file was deleted.

99 changes: 0 additions & 99 deletions libcxx/test/benchmarks/algorithms/equal.bench.cpp

This file was deleted.

90 changes: 0 additions & 90 deletions libcxx/test/benchmarks/algorithms/find.bench.cpp

This file was deleted.

25 changes: 0 additions & 25 deletions libcxx/test/benchmarks/algorithms/for_each.bench.cpp

This file was deleted.

58 changes: 0 additions & 58 deletions libcxx/test/benchmarks/algorithms/mismatch.bench.cpp

This file was deleted.

Loading
Loading