This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 37cf30c 2015-11-13 Richard Biener rguenther@suse.de new 87e0739 Implement C++ LFTSv1 polymorphic memory resources new c659042 Define alias templates using polymorphic memory resources
The 2 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 | 29 ++ libstdc++-v3/include/Makefile.am | 3 + libstdc++-v3/include/Makefile.in | 3 + libstdc++-v3/include/bits/uses_allocator.h | 8 +- libstdc++-v3/include/experimental/deque | 11 + libstdc++-v3/include/experimental/forward_list | 11 + libstdc++-v3/include/experimental/list | 11 + libstdc++-v3/include/experimental/map | 18 + libstdc++-v3/include/experimental/memory_resource | 385 +++++++++++++++++++++ libstdc++-v3/include/experimental/{map => regex} | 38 +- libstdc++-v3/include/experimental/set | 15 + libstdc++-v3/include/experimental/string | 22 ++ libstdc++-v3/include/experimental/unordered_map | 20 ++ libstdc++-v3/include/experimental/unordered_set | 19 + .../regex.cc => include/experimental/utility} | 31 +- libstdc++-v3/include/experimental/vector | 11 + .../experimental/type_erased_allocator/1.cc | 147 ++++++++ .../type_erased_allocator/1_neg.cc} | 26 +- .../experimental/type_erased_allocator/2.cc | 202 +++++++++++ .../type_erased_allocator/uses_allocator.cc | 22 ++ 20 files changed, 991 insertions(+), 41 deletions(-) create mode 100644 libstdc++-v3/include/experimental/memory_resource copy libstdc++-v3/include/experimental/{map => regex} (66%) copy libstdc++-v3/{src/c++11/regex.cc => include/experimental/utility} (67%) create mode 100644 libstdc++-v3/testsuite/experimental/type_erased_allocator/1.cc copy libstdc++-v3/testsuite/{25_algorithms/is_permutation/64646.cc => experimental [...] create mode 100644 libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc create mode 100644 libstdc++-v3/testsuite/experimental/type_erased_allocator/uses_ [...]