This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from bae0ed69e18 c++: Fix SFINAE for deleted explicit specializations [PR119343] new ea42e28cbc3 libstdc++: Extend __is_standard_integer to cover extended i [...] new 03562c1e023 libstdc++: Implement P2404R3 relaxations to comparable_with [...]
The 2 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/intcmp.h | 12 ++-- libstdc++-v3/include/bits/max_size_type.h | 6 +- libstdc++-v3/include/bits/sat_arith.h | 12 ++-- libstdc++-v3/include/bits/version.def | 6 +- libstdc++-v3/include/bits/version.h | 4 +- libstdc++-v3/include/c_compatibility/stdckdint.h | 32 ++++------- libstdc++-v3/include/ext/numeric_traits.h | 2 +- libstdc++-v3/include/std/charconv | 6 +- libstdc++-v3/include/std/concepts | 23 +++++++- libstdc++-v3/include/std/mdspan | 8 +-- libstdc++-v3/include/std/type_traits | 13 ++++- libstdc++-v3/libsupc++/compare | 7 +-- .../20_util/integer_comparisons/extended.cc | 60 ++++++++++++++++++++ .../23_containers/mdspan/extents/ctor_ints.cc | 7 +++ .../mdspan/submdspan/strided_slice.cc | 3 + .../testsuite/26_numerics/saturation/extended.cc | 55 ++++++++++++++++++ .../testsuite/26_numerics/stdckdint/extended.cc | 65 ++++++++++++++++++++++ .../std/concepts/concepts.compare/move_only.cc | 28 ++++++++++ 18 files changed, 292 insertions(+), 57 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/integer_comparisons/extended.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/saturation/extended.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/stdckdint/extended.cc create mode 100644 libstdc++-v3/testsuite/std/concepts/concepts.compare/move_only.cc