Skip to content

Commit 6114724

Browse files
committed
CI
1 parent c65a37e commit 6114724

File tree

14 files changed

+155
-10
lines changed

14 files changed

+155
-10
lines changed

libcxx/docs/ReleaseNotes/21.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Implemented Papers
3939
------------------
4040

4141
- N4258: Cleaning-up noexcept in the Library (`Github <https://github.com/llvm/llvm-project/issues/99937>`__)
42+
- P1222R4: A Standard ``flat_set`` is partially implemented and ``flat_set`` is provided (`Github <https://github.com/llvm/llvm-project/issues/105193>`__)
4243

4344
Improvements and New Features
4445
-----------------------------

libcxx/docs/Status/Cxx23Papers.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"`P0009R18 <https://wg21.link/P0009R18>`__","mdspan: A Non-Owning Multidimensional Array Reference","2022-07 (Virtual)","|Complete|","18",""
5555
"`P0429R9 <https://wg21.link/P0429R9>`__","A Standard ``flat_map``","2022-07 (Virtual)","|Complete|","20",""
5656
"`P1169R4 <https://wg21.link/P1169R4>`__","``static operator()``","2022-07 (Virtual)","|Complete|","16",""
57-
"`P1222R4 <https://wg21.link/P1222R4>`__","A Standard ``flat_set``","2022-07 (Virtual)","","",""
57+
"`P1222R4 <https://wg21.link/P1222R4>`__","A Standard ``flat_set``","2022-07 (Virtual)","|In progress|","",""
5858
"`P1223R5 <https://wg21.link/P1223R5>`__","``ranges::find_last()``, ``ranges::find_last_if()``, and ``ranges::find_last_if_not()``","2022-07 (Virtual)","|Complete|","19",""
5959
"`P1467R9 <https://wg21.link/P1467R9>`__","Extended ``floating-point`` types and standard names","2022-07 (Virtual)","","",""
6060
"`P1642R11 <https://wg21.link/P1642R11>`__","Freestanding ``[utilities]``, ``[ranges]``, and ``[iterators]``","2022-07 (Virtual)","","",""

libcxx/modules/std.compat.cppm.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ module;
5353
# if __has_include(<debugging>)
5454
# error "please update the header information for <debugging> in headers_not_available in utils/libcxx/header_information.py"
5555
# endif // __has_include(<debugging>)
56-
# if __has_include(<flat_set>)
57-
# error "please update the header information for <flat_set> in headers_not_available in utils/libcxx/header_information.py"
58-
# endif // __has_include(<flat_set>)
5956
# if __has_include(<generator>)
6057
# error "please update the header information for <generator> in headers_not_available in utils/libcxx/header_information.py"
6158
# endif // __has_include(<generator>)

libcxx/modules/std.cppm.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ module;
6565
#include <expected>
6666
#include <filesystem>
6767
#include <flat_map>
68+
#include <flat_set>
6869
#include <format>
6970
#include <forward_list>
7071
#if _LIBCPP_HAS_LOCALIZATION
@@ -162,9 +163,6 @@ module;
162163
# if __has_include(<debugging>)
163164
# error "please update the header information for <debugging> in headers_not_available in utils/libcxx/header_information.py"
164165
# endif // __has_include(<debugging>)
165-
# if __has_include(<flat_set>)
166-
# error "please update the header information for <flat_set> in headers_not_available in utils/libcxx/header_information.py"
167-
# endif // __has_include(<flat_set>)
168166
# if __has_include(<generator>)
169167
# error "please update the header information for <generator> in headers_not_available in utils/libcxx/header_information.py"
170168
# endif // __has_include(<generator>)

libcxx/modules/std/flat_set.inc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//===----------------------------------------------------------------------===//
99

1010
export namespace std {
11-
#if 0
11+
#if _LIBCPP_STD_VER >= 23
1212
// [flat.set], class template flat_­set
1313
using std::flat_set;
1414

@@ -19,7 +19,9 @@ export namespace std {
1919

2020
// [flat.set.erasure], erasure for flat_­set
2121
using std::erase_if;
22+
#endif // _LIBCPP_STD_VER >= 23
2223

24+
#if 0
2325
// [flat.multiset], class template flat_­multiset
2426
using std::flat_multiset;
2527

libcxx/test/libcxx/transitive_includes/cxx03.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,14 @@ flat_map initializer_list
683683
flat_map limits
684684
flat_map type_traits
685685
flat_map version
686+
flat_set cmath
687+
flat_set compare
688+
flat_set cstddef
689+
flat_set cstdint
690+
flat_set initializer_list
691+
flat_set limits
692+
flat_set type_traits
693+
flat_set version
686694
format algorithm
687695
format array
688696
format atomic

libcxx/test/libcxx/transitive_includes/cxx11.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,14 @@ flat_map initializer_list
683683
flat_map limits
684684
flat_map type_traits
685685
flat_map version
686+
flat_set cmath
687+
flat_set compare
688+
flat_set cstddef
689+
flat_set cstdint
690+
flat_set initializer_list
691+
flat_set limits
692+
flat_set type_traits
693+
flat_set version
686694
format algorithm
687695
format array
688696
format atomic

libcxx/test/libcxx/transitive_includes/cxx14.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,14 @@ flat_map initializer_list
701701
flat_map limits
702702
flat_map type_traits
703703
flat_map version
704+
flat_set cmath
705+
flat_set compare
706+
flat_set cstddef
707+
flat_set cstdint
708+
flat_set initializer_list
709+
flat_set limits
710+
flat_set type_traits
711+
flat_set version
704712
format algorithm
705713
format array
706714
format atomic

libcxx/test/libcxx/transitive_includes/cxx17.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,14 @@ flat_map initializer_list
709709
flat_map limits
710710
flat_map type_traits
711711
flat_map version
712+
flat_set cmath
713+
flat_set compare
714+
flat_set cstddef
715+
flat_set cstdint
716+
flat_set initializer_list
717+
flat_set limits
718+
flat_set type_traits
719+
flat_set version
712720
format algorithm
713721
format array
714722
format atomic

libcxx/test/libcxx/transitive_includes/cxx20.csv

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,14 @@ flat_map initializer_list
705705
flat_map limits
706706
flat_map type_traits
707707
flat_map version
708+
flat_set cmath
709+
flat_set compare
710+
flat_set cstddef
711+
flat_set cstdint
712+
flat_set initializer_list
713+
flat_set limits
714+
flat_set type_traits
715+
flat_set version
708716
format algorithm
709717
format array
710718
format atomic

0 commit comments

Comments
 (0)