This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 681171bd1 AIX system headers need stdint.h and inttypes.h to be re-enterable new e46f68502 [libc++] Take 2: Implement CTAD for map and multimap
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/iterator | 16 +++ include/map | 61 ++++++++- .../associative/map/map.cons/deduct.fail.cpp | 107 ++++++++++++++++ .../associative/map/map.cons/deduct.pass.cpp | 137 +++++++++++++++++++++ .../associative/map/map.cons/deduct_const.pass.cpp | 107 ++++++++++++++++ .../multimap/multimap.cons/deduct.fail.cpp | 107 ++++++++++++++++ .../multimap/multimap.cons/deduct.pass.cpp | 137 +++++++++++++++++++++ .../multimap/multimap.cons/deduct_const.pass.cpp | 107 ++++++++++++++++ 8 files changed, 775 insertions(+), 4 deletions(-) create mode 100644 test/std/containers/associative/map/map.cons/deduct.fail.cpp create mode 100644 test/std/containers/associative/map/map.cons/deduct.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/deduct_const.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/deduct.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/deduct.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/deduct_c [...]