This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from d498e79ebe9 testsuite: fix dg-require-* order vs dg-additional-sources new 74b5101cc9e libstdc++: Handle encodings in localized chrono formatting [...] new 72cd15b20a8 libstdc++: Support P2510R3 "Formatting pointers" as a DR for C++20 new 3836df7e895 libstdc++: Implement C++26 type checking for std::format ar [...] new f6f2c78d9db libstdc++: Define C++26 member visit for std::variant [PR110356] new 08782a5d92b libstdc++: Define C++26 member visit for std::basic_format_ [...] new 96f789d25f9 libstdc++: Bump __cpp_lib_format value for std::runtime_format new 5dd1f0d69f5 libstdc++: Only append "@euro" to locale names for Glibc testing new ee4cc961ce3 libstdc++: Handle strerror returning null
The 8 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/acinclude.m4 | 2 +- libstdc++-v3/config/abi/pre/gnu.ver | 18 +- libstdc++-v3/configure | 2 +- libstdc++-v3/include/bits/c++config | 10 + libstdc++-v3/include/bits/chrono_io.h | 95 +++++++-- libstdc++-v3/include/bits/version.def | 34 +++- libstdc++-v3/include/bits/version.h | 18 +- libstdc++-v3/include/std/format | 186 ++++++++++++++++-- libstdc++-v3/include/std/variant | 46 +++++ libstdc++-v3/src/c++11/system_error.cc | 6 +- libstdc++-v3/src/c++20/Makefile.am | 8 +- libstdc++-v3/src/c++20/Makefile.in | 10 +- libstdc++-v3/src/c++20/format.cc | 213 +++++++++++++++++++++ libstdc++-v3/testsuite/20_util/variant/visit.cc | 5 +- .../testsuite/20_util/variant/visit_member.cc | 117 +++++++++++ libstdc++-v3/testsuite/lib/libstdc++.exp | 2 +- .../testsuite/std/format/arguments/args.cc | 43 +++++ .../testsuite/std/format/functions/format.cc | 6 +- libstdc++-v3/testsuite/std/format/parse_ctx.cc | 149 +++++++++++++- libstdc++-v3/testsuite/std/format/parse_ctx_neg.cc | 39 ++++ libstdc++-v3/testsuite/std/format/string.cc | 13 ++ .../testsuite/std/time/format_localized.cc | 90 +++++++++ libstdc++-v3/testsuite/util/testsuite_abi.cc | 1 + 23 files changed, 1059 insertions(+), 54 deletions(-) create mode 100644 libstdc++-v3/src/c++20/format.cc create mode 100644 libstdc++-v3/testsuite/20_util/variant/visit_member.cc create mode 100644 libstdc++-v3/testsuite/std/format/parse_ctx_neg.cc create mode 100644 libstdc++-v3/testsuite/std/time/format_localized.cc