This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from ee856f1 Don't default older GCC's to C++17, but C++14 or C++11 instead new 952eaec Implement P0513R0 - "Poisoning the Hash"
The 1 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: include/__functional_base | 8 +- include/functional | 242 +------- include/memory | 358 +----------- include/new | 2 +- include/optional | 6 +- include/utility | 640 +++++++++++++++++++++ include/variant | 6 +- test/libcxx/test/config.py | 9 - .../sequences/vector.bool/enabled_hash.pass.cpp} | 16 +- .../syserr/syserr.hash/enabled_hash.pass.cpp} | 19 +- .../enabled_hashes.pass.cpp} | 25 +- .../string.view.hash/enabled_hashes.pass.cpp | 31 + .../string.view.hash/string_view.pass.cpp | 27 +- .../enabled_hashes.pass.cpp} | 20 +- .../thread.thread.id/thread_id.pass.cpp | 2 +- .../enabled_hashes.pass.cpp} | 12 +- .../util.smartptr.hash/enabled_hash.pass.cpp} | 15 +- .../util.smartptr.hash/hash_shared_ptr.pass.cpp | 14 + .../util.smartptr.hash/hash_unique_ptr.pass.cpp | 65 +++ .../enabled_hash.pass.cpp} | 14 +- .../utilities/optional/optional.hash/hash.pass.cpp | 21 + .../bitset.hash/enabled_hash.pass.cpp | 29 + .../type.index.hash/enabled_hash.pass.cpp} | 15 +- .../type.index.synopsis/hash_type_index.pass.cpp | 10 + .../enabled_hash.pass.cpp} | 8 +- .../utilities/variant/variant.hash/hash.pass.cpp | 30 + test/support/deleter_types.h | 60 ++ test/support/min_allocator.h | 56 +- test/support/poisoned_hash_helper.hpp | 244 ++++++++ .../test_poisoned_hash_helper.pass.cpp | 30 + www/cxx1z_status.html | 2 +- 31 files changed, 1318 insertions(+), 718 deletions(-) copy test/{libcxx/containers/sequences/vector/const_value_type.pass.cpp => std/con [...] copy test/{libcxx/modules/clocale_exports.sh.cpp => std/diagnostics/syserr/syserr. [...] copy test/std/strings/{char.traits/char.traits.specializations/char.traits.special [...] create mode 100644 test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp copy test/std/thread/thread.threads/thread.thread.class/{thread.thread.constr/defa [...] copy test/std/utilities/function.objects/{func.wrap/func.wrap.func/derive_from.fai [...] copy test/{libcxx/modules/clocale_exports.sh.cpp => std/utilities/memory/util.smar [...] copy test/std/utilities/optional/{optional.syn/optional_includes_initializer_list. [...] create mode 100644 test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp copy test/{libcxx/modules/clocale_exports.sh.cpp => std/utilities/type.index/type. [...] copy test/std/utilities/variant/{variant.synopsis/variant_npos.pass.cpp => variant [...] create mode 100644 test/support/poisoned_hash_helper.hpp create mode 100644 test/support/test.support/test_poisoned_hash_helper.pass.cpp