This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ae034b9106f testsuite: move more analyzer test cases to c-c++-common (3 [...] new 2ef5200a6fb libstdc++: Fix %S format of duration with floating-point rep new 0c773209fc9 libstdc++: Add dg-output to two tests new 3fa0f9404b1 libstdc++: Tweaks for std::format fast path new 29ad35a1db6 libstdc++: Fix filebuf::native_handle() for Windows new fe54b57728c libstdc++: Implement C++23 <print> header [PR107760]
The 5 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 | 3 +- libstdc++-v3/config/io/basic_file_stdio.cc | 2 +- libstdc++-v3/configure | 3 +- libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/chrono_io.h | 2 +- libstdc++-v3/include/bits/version.def | 9 + libstdc++-v3/include/bits/version.h | 29 +- libstdc++-v3/include/std/format | 93 +++++- libstdc++-v3/include/std/ostream | 152 +++++++++ libstdc++-v3/include/std/print | 138 ++++++++ libstdc++-v3/src/c++23/Makefile.am | 8 +- libstdc++-v3/src/c++23/Makefile.in | 10 +- libstdc++-v3/src/c++23/print.cc | 348 +++++++++++++++++++++ libstdc++-v3/testsuite/20_util/duration/io.cc | 4 + .../27_io/basic_filebuf/native_handle/char/1.cc | 9 +- .../27_io/basic_filebuf/native_handle/wchar_t/1.cc | 9 +- .../testsuite/27_io/basic_ostream/print/1.cc | 112 +++++++ libstdc++-v3/testsuite/27_io/objects/char/2.cc | 2 + libstdc++-v3/testsuite/27_io/objects/wchar_t/2.cc | 2 + libstdc++-v3/testsuite/27_io/print/1.cc | 85 +++++ libstdc++-v3/testsuite/27_io/print/2.cc | 151 +++++++++ 22 files changed, 1137 insertions(+), 36 deletions(-) create mode 100644 libstdc++-v3/include/std/print create mode 100644 libstdc++-v3/src/c++23/print.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ostream/print/1.cc create mode 100644 libstdc++-v3/testsuite/27_io/print/1.cc create mode 100644 libstdc++-v3/testsuite/27_io/print/2.cc