This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 0b1d66658ec coroutines: Build pointer initializers with nullptr_node [P [...] new 64c986b4955 libstdc++: Diagnose broken allocator rebind members new 59822c39207 libstdc++: Fixes for std::expected new 8d9e2776a6d libstdc++: Add monadic operations to std::expected for C++2 [...]
The 3 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/alloc_traits.h | 17 +- libstdc++-v3/include/std/expected | 600 ++++++++++++++++++++- libstdc++-v3/include/std/version | 2 +- .../allocator_traits/members/rebind_alloc.cc | 11 +- .../allocator_traits/requirements/rebind_neg.cc | 20 + .../testsuite/20_util/expected/equality.cc | 49 ++ .../testsuite/20_util/expected/illformed_neg.cc | 1 + libstdc++-v3/testsuite/20_util/expected/monadic.cc | 280 ++++++++++ .../testsuite/20_util/expected/observers.cc | 20 + libstdc++-v3/testsuite/20_util/expected/swap.cc | 92 +++- .../testsuite/20_util/expected/synopsis.cc | 2 +- .../testsuite/20_util/expected/unexpected.cc | 4 + libstdc++-v3/testsuite/20_util/expected/version.cc | 2 +- .../20_util/scoped_allocator/outermost.cc | 8 + .../23_containers/forward_list/48101_neg.cc | 1 + .../23_containers/unordered_multiset/48101_neg.cc | 1 + .../23_containers/unordered_set/48101_neg.cc | 1 + .../testsuite/23_containers/vector/52591.cc | 2 +- 18 files changed, 1086 insertions(+), 27 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/allocator_traits/requirements/re [...] create mode 100644 libstdc++-v3/testsuite/20_util/expected/equality.cc create mode 100644 libstdc++-v3/testsuite/20_util/expected/monadic.cc