This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 0373708 Add <variant> tests but disable them for libc++ new ef3060e [libcxx] Fix max_size() across all containers
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: .clang-format | 6 +++ include/__hash_table | 9 ++-- include/__tree | 4 +- include/deque | 4 +- include/forward_list | 7 +++- include/list | 10 ++++- include/vector | 3 +- .../associative/map/map.access/max_size.pass.cpp | 38 ++++++++++++----- .../associative/multimap/max_size.pass.cpp | 38 ++++++++++++----- .../associative/multiset/max_size.pass.cpp | 35 +++++++++++----- .../containers/associative/set/max_size.pass.cpp | 35 +++++++++++----- .../deque/deque.capacity/max_size.pass.cpp | 47 +++++++++++++++++++++ .../sequences/forwardlist/max_size.pass.cpp | 37 +++++++++++------ .../sequences/list/list.capacity/max_size.pass.cpp | 47 +++++++++++++++++++++ .../vector/vector.capacity/max_size.pass.cpp | 48 ++++++++++++++++++++++ .../containers/unord/unord.map/max_size.pass.cpp | 41 ++++++++++++------ .../unord/unord.multimap/max_size.pass.cpp | 43 +++++++++++++------ .../unord/unord.multiset/max_size.pass.cpp | 40 +++++++++++++----- .../containers/unord/unord.set/max_size.pass.cpp | 36 +++++++++++----- test/support/test_allocator.h | 6 +++ 20 files changed, 425 insertions(+), 109 deletions(-) create mode 100644 test/std/containers/sequences/deque/deque.capacity/max_size.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/max_size.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/max_size.pass.cpp