This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 798d22e [RS6000] -mno-vsx should force -mno-power9-dform new 300178e Fix ChangeLog. new 1a66938 Implement P0032R3, Homogeneous interface for variant, any an [...] new 2c0c0c9 Added forgotten PR testsuite/71489 reference. new 6029a91 2016-07-14 Thomas Preud'homme thomas.preudhomme@arm.com new d481d9a Improve doxygen comments for allocators in containers
The 5 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: gcc/testsuite/ChangeLog | 6 + gcc/testsuite/gcc.target/arm/pr42574.c | 2 +- libstdc++-v3/ChangeLog | 118 +++++++++++++++++ libstdc++-v3/include/bits/forward_list.h | 16 ++- libstdc++-v3/include/bits/stl_deque.h | 20 +-- libstdc++-v3/include/bits/stl_list.h | 21 ++- libstdc++-v3/include/bits/stl_map.h | 13 +- libstdc++-v3/include/bits/stl_multimap.h | 13 +- libstdc++-v3/include/bits/stl_multiset.h | 13 +- libstdc++-v3/include/bits/stl_set.h | 13 +- libstdc++-v3/include/bits/stl_vector.h | 31 +++-- libstdc++-v3/include/bits/unordered_map.h | 14 +- libstdc++-v3/include/bits/unordered_set.h | 10 +- libstdc++-v3/include/std/any | 142 ++++++++++++++++----- libstdc++-v3/include/std/optional | 30 +++-- libstdc++-v3/include/std/utility | 28 ++++ libstdc++-v3/testsuite/20_util/any/assign/1.cc | 20 +-- .../testsuite/20_util/any/assign/emplace.cc | 62 +++++++++ libstdc++-v3/testsuite/20_util/any/assign/self.cc | 18 +-- libstdc++-v3/testsuite/20_util/any/cons/1.cc | 20 +-- .../testsuite/20_util/any/cons/in_place.cc | 57 +++++++++ libstdc++-v3/testsuite/20_util/any/make_any.cc | 57 +++++++++ .../testsuite/20_util/any/misc/any_cast_neg.cc | 2 +- libstdc++-v3/testsuite/20_util/any/misc/swap.cc | 4 +- libstdc++-v3/testsuite/20_util/any/modifiers/1.cc | 12 +- .../20_util/any/{typedefs.cc => requirements.cc} | 17 ++- .../testsuite/20_util/in_place/requirements.cc | 47 +++++++ .../20_util/optional/constexpr/in_place.cc | 3 - .../testsuite/20_util/optional/in_place.cc | 3 - .../testsuite/20_util/optional/make_optional.cc | 30 +++++ 30 files changed, 680 insertions(+), 162 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/any/assign/emplace.cc create mode 100644 libstdc++-v3/testsuite/20_util/any/cons/in_place.cc create mode 100644 libstdc++-v3/testsuite/20_util/any/make_any.cc copy libstdc++-v3/testsuite/20_util/any/{typedefs.cc => requirements.cc} (67%) create mode 100644 libstdc++-v3/testsuite/20_util/in_place/requirements.cc