This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-8-branch in repository gcc.
from 3b921cd35b5 PR libstdc++/83511 add default argument to basic_string_vie [...] new 63ed0b31fe7 PR libstdc++/88119 use alignof in std::alignment_of, not __ [...] new 2c79261f358 PR libstdc++/89128 add deduction guides for container adaptors new e725de28ae5 PR libstdc++/87308 adjust regex used in std::any pretty printer new 7938f3c68f6 PR libstdc++/65229 fix pretty printer for std::bitset<0> new fbafc87c877 PR libstdc++/87787 avoid undefined null args to memcpy and memmove new 0c25a557fbc P0972R0 <chrono> zero(), min(), and max() should be noexcept
The 6 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/ChangeLog | 76 +++++++++++++ libstdc++-v3/include/bits/char_traits.h | 2 + libstdc++-v3/include/bits/locale_facets.h | 12 ++- libstdc++-v3/include/bits/stl_queue.h | 38 +++++++ libstdc++-v3/include/bits/stl_stack.h | 12 +++ libstdc++-v3/include/ext/aligned_buffer.h | 7 +- libstdc++-v3/include/std/chrono | 16 +-- libstdc++-v3/include/std/type_traits | 2 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 15 ++- .../testsuite/20_util/alignment_of/value.cc | 26 +++-- .../20_util/duration/requirements/noexcept.cc | 39 +++++++ .../20_util/time_point/requirements/noexcept.cc | 45 ++++++++ .../23_containers/priority_queue/deduction.cc | 119 +++++++++++++++++++++ .../testsuite/23_containers/queue/deduction.cc | 89 +++++++++++++++ .../testsuite/23_containers/stack/deduction.cc | 89 +++++++++++++++ .../testsuite/libstdc++-prettyprinters/simple.cc | 4 + 16 files changed, 560 insertions(+), 31 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/duration/requirements/noexcept.cc create mode 100644 libstdc++-v3/testsuite/20_util/time_point/requirements/noexcept.cc create mode 100644 libstdc++-v3/testsuite/23_containers/priority_queue/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/queue/deduction.cc create mode 100644 libstdc++-v3/testsuite/23_containers/stack/deduction.cc