This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e0672017370 testsuite/101114: Adjust libgomp.c-c++-common/struct-elem-5 [...] new e83a5a6b689 libstdc++: More workarounds in 17_intro/names.cc test [PR 97088] new 7ab7fa1b51c libstdc++: Remove noexcept from syncbuf::swap (LWG 3498) new 9b6c65c754f libstdc++: Fix exception handling in std::ostream seek functions new f8c5b542f6c libstdc++: Implement LWG 581 for std:ostream::flush() new 4a52cf2eb9d libstdc++: Avoid intercepting exception in ostream::write
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/doc/html/manual/bugs.html | 3 + libstdc++-v3/doc/xml/manual/intro.xml | 6 ++ libstdc++-v3/include/bits/basic_ios.tcc | 2 +- libstdc++-v3/include/bits/ostream.tcc | 119 +++++++++------------ libstdc++-v3/include/std/ostream | 20 ++-- libstdc++-v3/include/std/syncstream | 2 +- libstdc++-v3/testsuite/17_intro/names.cc | 14 +++ .../testsuite/27_io/basic_ostream/flush/char/2.cc | 48 +++++++-- .../flush/char/exceptions_badbit_throw.cc | 16 +-- .../27_io/basic_ostream/flush/wchar_t/2.cc | 48 +++++++-- .../flush/wchar_t/exceptions_badbit_throw.cc | 16 +-- .../seekp/char/exceptions_badbit_throw.cc | 20 ++-- .../27_io/basic_ostream/seekp/char/n3168.cc | 103 ++++++++++++++++++ .../seekp/wchar_t/exceptions_badbit_throw.cc | 22 ++-- .../27_io/basic_ostream/seekp/wchar_t/n3168.cc | 101 +++++++++++++++++ .../tellp/char/exceptions_badbit_throw.cc | 10 +- .../27_io/basic_ostream/tellp/char/n3168.cc | 64 +++++++++++ .../tellp/wchar_t/exceptions_badbit_throw.cc | 10 +- .../27_io/basic_ostream/tellp/wchar_t/n3168.cc | 64 +++++++++++ libstdc++-v3/testsuite/experimental/names.cc | 1 + 20 files changed, 528 insertions(+), 161 deletions(-) create mode 100644 libstdc++-v3/testsuite/27_io/basic_ostream/seekp/char/n3168.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ostream/seekp/wchar_t/n3168.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ostream/tellp/char/n3168.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ostream/tellp/wchar_t/n3168.cc