Skip to content

Commit 408c2dd

Browse files
committed
ci
1 parent f97693d commit 408c2dd

File tree

7 files changed

+4
-6
lines changed

7 files changed

+4
-6
lines changed

libcxx/include/__flat_set/flat_multiset.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
#include <__utility/pair.h>
6969
#include <__utility/scope_guard.h>
7070
#include <__vector/vector.h>
71-
#include <algorithm>
7271
#include <initializer_list>
7372

7473
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)

libcxx/include/__flat_set/flat_set.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#ifndef _LIBCPP___FLAT_SET_FLAT_SET_H
1111
#define _LIBCPP___FLAT_SET_FLAT_SET_H
1212

13-
#include "utils.h"
1413
#include <__algorithm/lexicographical_compare_three_way.h>
1514
#include <__algorithm/lower_bound.h>
1615
#include <__algorithm/min.h>

libcxx/include/flat_set

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ namespace std {
5555
# include <__config>
5656

5757
# if _LIBCPP_STD_VER >= 23
58-
# include <__flat_map/sorted_unique.h>
5958
# include <__flat_map/sorted_equivalent.h>
60-
# include <__flat_set/flat_set.h>
59+
# include <__flat_map/sorted_unique.h>
6160
# include <__flat_set/flat_multiset.h>
61+
# include <__flat_set/flat_set.h>
6262
# endif
6363

6464
// for feature-test macros

libcxx/include/module.modulemap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1304,6 +1304,7 @@ module std [system] {
13041304
module flat_set {
13051305
module flat_set {
13061306
header "__flat_set/flat_set.h"
1307+
header "__flat_set/flat_multiset.h"
13071308
export std.vector.vector
13081309
export std.vector.fwd
13091310
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ template <class KeyContainer>
2626
void test_one() {
2727
using Key = typename KeyContainer::value_type;
2828
using M = std::flat_multiset<Key, std::less<Key>, KeyContainer>;
29-
using V = typename M::value_type;
3029

3130
{
3231
M m = {1, 1, 1, 3, 3, 3};

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ template <class KeyContainer>
2626
void test_one() {
2727
using Key = typename KeyContainer::value_type;
2828
using M = std::flat_multiset<Key, std::less<Key>, KeyContainer>;
29-
using V = Key;
3029
{
3130
M m = {1, 1, 1, 3, 3, 3};
3231
m.insert(std::sorted_equivalent, {0, 1, 1, 2, 2, 4});

libcxx/utils/libcxx/test/modules.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
ExtraHeader["functional"] = "v1/__compare/compare_three_way.h$"
9494

9595
# <flat_set> reuses some functionality defined inside <flat_map>
96+
ExtraHeader["flat_set"] = "v1/__flat_map/sorted_equivalent.h$"
9697
ExtraHeader["flat_set"] = "v1/__flat_map/sorted_unique.h$"
9798

9899
# Some C compatibility headers define std::size_t, which is in <__cstddef/size_t.h>

0 commit comments

Comments
 (0)