This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from f003d63c4 Comment on 'Review' issues new 6cb35ede8 [libc++] Fix PR35491 - std::array of zero-size doesn't work w [...]
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/__config | 9 +- include/array | 167 ++++++++++++++++++--- .../sequences/array/array.zero/db_back.pass.cpp} | 37 +++-- .../sequences/array/array.zero/db_front.pass.cpp} | 37 +++-- .../array/array.zero/db_indexing.pass.cpp | 53 +++++++ .../sequences/array/array.cons/default.pass.cpp | 17 +++ .../array/array.cons/implicit_copy.pass.cpp | 93 ++++++++++++ .../sequences/array/array.data/data.pass.cpp | 30 +++- .../sequences/array/array.data/data_const.pass.cpp | 19 +++ .../{begin.pass.cpp => array.fill/fill.fail.cpp} | 23 ++- .../{begin.pass.cpp => array.swap/swap.fail.cpp} | 24 ++- test/std/containers/sequences/array/at.pass.cpp | 20 +++ test/std/containers/sequences/array/begin.pass.cpp | 10 ++ .../containers/sequences/array/compare.fail.cpp | 71 +++++++++ .../containers/sequences/array/compare.pass.cpp | 63 ++++++++ test/std/containers/sequences/array/empty.fail.cpp | 5 +- .../containers/sequences/array/front_back.pass.cpp | 33 +++- .../containers/sequences/array/indexing.pass.cpp | 29 +++- .../sequences/array/size_and_alignment.pass.cpp | 55 +++++++ 19 files changed, 717 insertions(+), 78 deletions(-) copy test/libcxx/{debug/debug_throw_register.pass.cpp => containers/sequences/arra [...] copy test/libcxx/{debug/debug_throw_register.pass.cpp => containers/sequences/arra [...] create mode 100644 test/libcxx/containers/sequences/array/array.zero/db_indexing.pass.cpp create mode 100644 test/std/containers/sequences/array/array.cons/implicit_copy.pass.cpp copy test/std/containers/sequences/array/{begin.pass.cpp => array.fill/fill.fail.c [...] copy test/std/containers/sequences/array/{begin.pass.cpp => array.swap/swap.fail.c [...] create mode 100644 test/std/containers/sequences/array/compare.fail.cpp create mode 100644 test/std/containers/sequences/array/compare.pass.cpp create mode 100644 test/std/containers/sequences/array/size_and_alignment.pass.cpp