Skip to content

Commit 1dea486

Browse files
committed
CI again
1 parent 65cb6eb commit 1dea486

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

libcxx/include/module.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1291,8 +1291,8 @@ module std [system] {
12911291
header "__flat_set/flat_set.h"
12921292
export std.vector.vector
12931293
export std.vector.fwd
1294-
export std.flat_map.sorted_unique
12951294
}
1295+
module sorted_unique { header "__flat_map/sorted_unique.h" }
12961296

12971297
header "flat_set"
12981298
export *

libcxx/test/std/containers/container.adaptors/flat.set/flat.set.cons/default.pass.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ void test() {
5353
}
5454
{
5555
using A1 = explicit_allocator<int>;
56-
using A2 = explicit_allocator<char*>;
5756
{
5857
std::flat_set<int, DefaultCtableComp, std::vector<int, A1>> m;
5958
assert(m.empty());

libcxx/test/std/containers/container.adaptors/flat.set/flat.set.modifiers/insert_transparent.pass.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ void test_exception() {
146146
auto insert_func = [](auto& m, auto key_arg) {
147147
using FlatSet = std::decay_t<decltype(m)>;
148148
struct T {
149-
typename FlatSet::key_type key;
150-
T(typename FlatSet::key_type key) : key(key) {}
151-
operator typename FlatSet::value_type() const { return key; }
149+
typename FlatSet::key_type key_;
150+
T(typename FlatSet::key_type key) : key_(key) {}
151+
operator typename FlatSet::value_type() const { return key_; }
152152
};
153153
T t(key_arg);
154154
m.insert(t);

0 commit comments

Comments
 (0)