Skip to content

Commit 3a25e9d

Browse files
committed
release notes and gcc 15 filter out
1 parent 87725bf commit 3a25e9d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

libcxx/docs/ReleaseNotes/21.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ Improvements and New Features
7676
- The ``bitset::to_string`` function has been optimized, resulting in a performance improvement of up to 8.3x for bitsets
7777
with uniformly distributed zeros and ones, and up to 13.5x and 16.1x for sparse and dense bitsets, respectively.
7878

79+
- The ``flat_map::insert`` and ``flat_set::insert_range`` have been optimized, resulting in a performance improvement of up
80+
to 10x for inserting elements into a ``flat_map`` when the input range is a ``flat_map`` or a ``zip_view``.
81+
7982
Deprecations and Removals
8083
-------------------------
8184

libcxx/test/libcxx/iterators/product_iterator.pass.cpp

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

99
// UNSUPPORTED: c++03, c++11, c++14, c++17
10+
// gcc 15 does not seem to recognize the __product_iterator_traits specializations
11+
// UNSUPPORTED: gcc
1012

1113
#include <flat_map>
1214
#include <ranges>

0 commit comments

Comments
 (0)