Skip to content

Commit 9092382

Browse files
committed
ci
1 parent 2b10638 commit 9092382

File tree

5 files changed

+2
-7
lines changed

5 files changed

+2
-7
lines changed

libcxx/include/__flat_set/flat_multiset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ class flat_multiset {
603603
ranges::sort(__keys_.begin() + __old_size, __keys_.end(), __compare_);
604604
} else {
605605
_LIBCPP_ASSERT_SEMANTIC_REQUIREMENT(
606-
ranges::is_sorted(__keys_ | ranges::views::drop(__old_size)), "Key container is not sorted");
606+
ranges::is_sorted(__keys_ | ranges::views::drop(__old_size), __compare_), "Key container is not sorted");
607607
}
608608
ranges::inplace_merge(__keys_.begin(), __keys_.begin() + __old_size, __keys_.end(), __compare_);
609609
__on_failure.__complete();

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
10+
// UNSUPPORTED: no-localization
1011
// UNSUPPORTED: no-exceptions
1112

1213
// <flat_map>

libcxx/test/std/containers/container.adaptors/flat.multimap/flat.multimap.modifiers/swap_exception.pass.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
10-
// `check_assertion.h` requires Unix headers and regex support.
11-
// REQUIRES: has-unix-headers
1210
// UNSUPPORTED: no-localization
1311
// UNSUPPORTED: no-exceptions
1412

libcxx/test/std/containers/container.adaptors/flat.multiset/flat.multiset.modifiers/swap_exception.pass.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
10-
// `check_assertion.h` requires Unix headers and regex support.
11-
// REQUIRES: has-unix-headers
1210
// UNSUPPORTED: no-localization
1311
// UNSUPPORTED: no-exceptions
1412

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
10-
// `check_assertion.h` requires Unix headers and regex support.
11-
// REQUIRES: has-unix-headers
1210
// UNSUPPORTED: no-localization
1311
// UNSUPPORTED: no-exceptions
1412

0 commit comments

Comments
 (0)