This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from fa99002538b c++: ICE in TARGET_EXPR evaluation in cp_fold_r [PR117980] new fb1f1c76305 libstdc++: Define P1206R7 range-key-type and range-mapped-t [...] new 92381894b36 libstdc++: Implement C++23 <flat_map> (P0429R9) new e3fab345064 libstdc++: Implement C++23 <flat_set> (P1222R4) new a104766914e OpenMP: Add 'nec' as to the 'vendor' context-selector list
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/omp-general.cc | 2 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/alloc_traits.h | 3 + libstdc++-v3/include/bits/ranges_base.h | 8 + libstdc++-v3/include/bits/stl_function.h | 6 + .../include/bits/stl_iterator_base_types.h | 6 + libstdc++-v3/include/bits/uses_allocator.h | 5 + libstdc++-v3/include/bits/utility.h | 8 + libstdc++-v3/include/bits/version.def | 16 + libstdc++-v3/include/bits/version.h | 20 + libstdc++-v3/include/precompiled/stdc++.h | 2 + libstdc++-v3/include/std/flat_map | 1570 ++++++++++++++++++++ libstdc++-v3/include/std/flat_set | 1041 +++++++++++++ libstdc++-v3/src/c++23/std.cc.in | 22 + libstdc++-v3/testsuite/23_containers/flat_map/1.cc | 178 +++ .../testsuite/23_containers/flat_multimap/1.cc | 153 ++ .../testsuite/23_containers/flat_multiset/1.cc | 140 ++ libstdc++-v3/testsuite/23_containers/flat_set/1.cc | 155 ++ 19 files changed, 3338 insertions(+), 1 deletion(-) create mode 100644 libstdc++-v3/include/std/flat_map create mode 100644 libstdc++-v3/include/std/flat_set create mode 100644 libstdc++-v3/testsuite/23_containers/flat_map/1.cc create mode 100644 libstdc++-v3/testsuite/23_containers/flat_multimap/1.cc create mode 100644 libstdc++-v3/testsuite/23_containers/flat_multiset/1.cc create mode 100644 libstdc++-v3/testsuite/23_containers/flat_set/1.cc