This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-14 in repository gcc.
from 973097d801a i386: Fix up *<extract_type>_vinsert<shuffletype><extract_s [...] new ce84abae497 libstdc++: Fix std::vector<bool> for -std=gnu++14 -fconcept [...] new 9ba75a628e0 libstdc++: Fix <ostream> and <istream> for -std=gnu++14 -fc [...] new a1e166516f9 libstdc++: Use reserved form of [[__likely__]] in <variant> new 5fcdb36fed0 libstdc++: Use __glibcxx_ranges_as_const to guard P2278R4 changes new 11b5ad5ba71 libstdc++: Use direct-initialization for std::vector<bool>' [...] new 095be59fd73 libstdc++: Define __cpp_lib_ranges in <algorithm> new 7d269e34a31 libstdc++: Make std::any_cast<void> ill-formed (LWG 3305) new 85d07df7be5 libstdc++: Make std::basic_format_context non-copyable [PR114387] new a78480c4e92 libstdc++: Remove std::basic_format_args default constructo [...] new d8e564539f2 libstdc++: Fix std::tr2::dynamic_bitset shift operations [P [...] new 8d52ae39b9d libstdc++: Initialize base in test allocator's constructor new c79e73e7eda libstdc++: Add missing constexpr to __atomic_impl::__clear_padding new c6372417e50 libstdc++: Add [[nodiscard]] to some std::locale functions
The 13 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: libstdc++-v3/include/bits/atomic_base.h | 2 +- libstdc++-v3/include/bits/locale_classes.h | 7 +++- libstdc++-v3/include/bits/locale_classes.tcc | 2 ++ libstdc++-v3/include/bits/ranges_base.h | 16 +++++----- libstdc++-v3/include/bits/stl_bvector.h | 4 +-- libstdc++-v3/include/bits/stl_iterator.h | 2 +- libstdc++-v3/include/std/algorithm | 1 + libstdc++-v3/include/std/any | 8 +++++ libstdc++-v3/include/std/format | 9 ++++-- libstdc++-v3/include/std/istream | 2 +- libstdc++-v3/include/std/ostream | 2 +- libstdc++-v3/include/std/variant | 2 +- libstdc++-v3/include/tr2/dynamic_bitset | 5 +-- libstdc++-v3/include/tr2/dynamic_bitset.tcc | 6 ++-- libstdc++-v3/testsuite/20_util/any/misc/lwg3305.cc | 15 +++++++++ .../testsuite/22_locale/locale/cons/12438.cc | 2 +- libstdc++-v3/testsuite/22_locale/locale/cons/2.cc | 2 +- .../testsuite/22_locale/locale/cons/unicode.cc | 2 +- .../testsuite/22_locale/locale/operations/2.cc | 2 +- .../23_containers/vector/allocator/115854.cc | 10 ++++++ .../23_containers/vector/bool/allocator/115854.cc | 10 ++++++ .../25_algorithms/headers/algorithm/synopsis.cc | 8 +++++ .../testsuite/29_atomics/atomic_float/constinit.cc | 3 ++ .../testsuite/std/format/arguments/args.cc | 4 +++ libstdc++-v3/testsuite/std/format/context.cc | 36 +++++++++++++++++++++ .../testsuite/tr2/dynamic_bitset/pr115399.cc | 37 ++++++++++++++++++++++ libstdc++-v3/testsuite/util/testsuite_allocator.h | 2 +- 27 files changed, 169 insertions(+), 32 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/any/misc/lwg3305.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/allocator/115854.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/allocator/115854.cc create mode 100644 libstdc++-v3/testsuite/29_atomics/atomic_float/constinit.cc create mode 100644 libstdc++-v3/testsuite/std/format/context.cc create mode 100644 libstdc++-v3/testsuite/tr2/dynamic_bitset/pr115399.cc