This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-12 in repository gcc.
from b517d0cef3c Daily bump. new d14333852eb libstdc++: Fix std::deque::insert(pos, first, last) undefin [...] new 1bfcb247ef2 libstdc++: Fix bogus -Wstringop-overflow in std::vector::in [...] new d143630ff72 libstdc++: Fix infinite loop in std::istream::ignore(n, del [...] new 2ea39e7b583 libstdc++: Qualify calls to debug mode helpers
The 4 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/deque.tcc | 3 + libstdc++-v3/include/bits/vector.tcc | 2 + libstdc++-v3/include/debug/helper_functions.h | 32 ++++--- libstdc++-v3/src/c++98/istream.cc | 13 ++- .../23_containers/deque/modifiers/insert/118035.cc | 26 ++++++ .../vector/modifiers/insert/117983.cc | 17 ++++ .../27_io/basic_istream/ignore/char/93672.cc | 101 +++++++++++++++++++++ .../27_io/basic_istream/ignore/wchar_t/93672.cc | 34 +++++++ 8 files changed, 215 insertions(+), 13 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/insert/118035.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/modifiers/insert/117983.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_istream/ignore/char/93672.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_istream/ignore/wchar_t/93672.cc