Skip to content

Commit ca08a9b

Browse files
committed
ci
1 parent 77d60c2 commit ca08a9b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

libcxx/include/module.modulemap.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,9 @@ module std [system] {
12981298

12991299
header "flat_map"
13001300
export *
1301+
export std.algorithm.ranges_sort
1302+
export std.ranges.zip_view
1303+
export std.tuple
13011304
}
13021305

13031306
module flat_set {

libcxx/test/std/containers/container.adaptors/flat.map/flat.map.modifiers/insert_initializer_list.pass.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ constexpr void test() {
2929
using Key = typename KeyContainer::value_type;
3030
using Value = typename ValueContainer::value_type;
3131
using M = std::flat_map<Key, Value, std::less<Key>, KeyContainer, ValueContainer>;
32-
using V = std::pair<const int, double>;
3332

3433
M m = {{1, 1}, {1, 1.5}, {1, 2}, {3, 1}, {3, 1.5}, {3, 2}};
3534
m.insert({

0 commit comments

Comments
 (0)