This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-6-branch in repository gcc.
from e7f9221 Daily bump. new 0078cf1 Fix naming, qualification and broken test for propagate_const new 618d8f8 Change libstdc++ manual to refer to release not trunk new 5e83016 Improve comments on check_v3_target_filesystem_ts new fe516f1 Define __cpp_lib_generic_associative_lookup feature-test macro new c0ee08a Define C++17 feature-test macros new a187c25 libstdc++/70940 Start fixing polymorphic memory resources new ede61b7 Fix std::wstring allocator tests new 2f14121 Move allocator in RB tree move constructors new a908699 Use correct value category in std::function constraint
The 9 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 | 82 ++++++++++++++++++++ libstdc++-v3/doc/html/manual/status.html | 17 ++--- libstdc++-v3/doc/xml/manual/status_cxx2011.xml | 3 +- libstdc++-v3/doc/xml/manual/status_cxx2014.xml | 12 ++- libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 3 +- libstdc++-v3/include/bits/allocator.h | 2 + libstdc++-v3/include/bits/stl_function.h | 1 - libstdc++-v3/include/bits/stl_tree.h | 7 +- libstdc++-v3/include/experimental/memory_resource | 18 ++--- libstdc++-v3/include/experimental/propagate_const | 26 +++---- libstdc++-v3/include/std/functional | 2 +- libstdc++-v3/include/std/shared_mutex | 2 +- libstdc++-v3/include/std/type_traits | 2 +- .../20_util/function/{69222.cc => cons/refqual.cc} | 15 ++-- .../basic_string/allocator/wchar_t/copy.cc | 6 +- .../basic_string/allocator/wchar_t/copy_assign.cc | 6 +- .../basic_string/allocator/wchar_t/minimal.cc | 2 +- .../basic_string/allocator/wchar_t/move.cc | 6 +- .../basic_string/allocator/wchar_t/move_assign.cc | 6 +- .../basic_string/allocator/wchar_t/noexcept.cc | 6 +- .../basic_string/allocator/wchar_t/swap.cc | 6 +- .../testsuite/23_containers/set/allocator/71964.cc | 71 ++++++++++++++++++ libstdc++-v3/testsuite/experimental/feat-cxx14.cc | 24 ++++-- .../1.cc | 43 +++++++---- .../null_memory_resource.cc} | 34 ++++++--- .../memory_resource/resource_adaptor.cc | 87 ++++++++++++++++++++++ .../experimental/propagate_const/cons/default.cc | 5 +- libstdc++-v3/testsuite/lib/libstdc++.exp | 4 +- 28 files changed, 393 insertions(+), 105 deletions(-) copy libstdc++-v3/testsuite/20_util/function/{69222.cc => cons/refqual.cc} (85%) create mode 100644 libstdc++-v3/testsuite/23_containers/set/allocator/71964.cc rename libstdc++-v3/testsuite/experimental/{type_erased_allocator => memory_resour [...] rename libstdc++-v3/testsuite/experimental/{type_erased_allocator/1_neg.cc => memo [...] create mode 100644 libstdc++-v3/testsuite/experimental/memory_resource/resource_ad [...]