This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from fa3ccf8bfe9 Remove static marker for range in alloca pass. new cf876562c59 libstdc++: Disable std::string{,_view} construction from nu [...] new 728e639d820 libstdc++: Add missing noexcept to std::variant helper new 22d34a2a506 libstdc++: Implement P1518R2 for container deduction guides
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/basic_string.h | 2 + libstdc++-v3/include/bits/cow_string.h | 3 + libstdc++-v3/include/bits/forward_list.h | 6 +- libstdc++-v3/include/bits/stl_bvector.h | 4 +- libstdc++-v3/include/bits/stl_deque.h | 4 +- libstdc++-v3/include/bits/stl_list.h | 4 +- libstdc++-v3/include/bits/stl_map.h | 4 +- libstdc++-v3/include/bits/stl_multimap.h | 5 +- libstdc++-v3/include/bits/stl_multiset.h | 5 +- libstdc++-v3/include/bits/stl_queue.h | 6 +- libstdc++-v3/include/bits/stl_set.h | 4 +- libstdc++-v3/include/bits/stl_stack.h | 3 +- libstdc++-v3/include/bits/stl_vector.h | 4 +- libstdc++-v3/include/debug/deque | 4 +- libstdc++-v3/include/debug/list | 4 +- libstdc++-v3/include/debug/map.h | 4 +- libstdc++-v3/include/debug/multimap.h | 5 +- libstdc++-v3/include/debug/multiset.h | 5 +- libstdc++-v3/include/debug/set.h | 4 +- libstdc++-v3/include/debug/vector | 4 +- libstdc++-v3/include/std/string_view | 2 + libstdc++-v3/include/std/variant | 2 +- .../21_strings/basic_string/cons/char/nullptr.cc | 4 ++ .../basic_string_view/cons/char/nonnull.cc | 2 +- .../basic_string_view/cons/wchar_t/nonnull.cc | 2 +- .../23_containers/deque/cons/deduction.cc | 29 +++++++++ .../23_containers/forward_list/cons/deduction.cc | 29 +++++++++ .../testsuite/23_containers/list/cons/deduction.cc | 29 +++++++++ .../testsuite/23_containers/map/cons/deduction.cc | 36 +++++++++++ .../23_containers/multimap/cons/deduction.cc | 36 +++++++++++ .../23_containers/multiset/cons/deduction.cc | 35 ++++++++++ .../23_containers/priority_queue/deduction.cc | 37 +++++++++++ .../testsuite/23_containers/queue/deduction.cc | 34 ++++++++++ .../testsuite/23_containers/set/cons/deduction.cc | 35 ++++++++++ .../testsuite/23_containers/stack/deduction.cc | 3 +- .../23_containers/unordered_map/cons/deduction.cc | 38 +++++++++++ .../unordered_multimap/cons/deduction.cc | 38 +++++++++++ .../unordered_multiset/cons/deduction.cc | 37 +++++++++++ .../23_containers/unordered_set/cons/deduction.cc | 37 +++++++++++ .../23_containers/vector/cons/deduction.cc | 75 ++++++++++++++++++++++ 40 files changed, 582 insertions(+), 42 deletions(-) create mode 100644 libstdc++-v3/testsuite/21_strings/basic_string/cons/char/nullptr.cc