This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from ece1de865 Mark <span> as "In progress" new 24258c441 Implement P0768r1: Library support for the Spaceship Operator.
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/CMakeLists.txt | 1 - include/__config | 5 + include/compare | 679 +++++++++++++++++++++ include/module.modulemap | 4 + test/libcxx/double_include.sh.cpp | 1 + .../set => language.support/cmp}/version.pass.cpp | 4 +- .../cmp.common/common_comparison_category.pass.cpp | 93 +++ .../cmp/cmp.partialord/partialord.pass.cpp | 164 +++++ .../cmp/cmp.strongeq/cmp.strongeq.pass.cpp | 96 +++ .../cmp/cmp.strongord/strongord.pass.cpp | 212 +++++++ .../cmp/cmp.weakeq/cmp.weakeq.pass.cpp | 70 +++ .../cmp/cmp.weakord/weakord.pass.cpp | 169 +++++ test/support/test_macros.h | 5 + 13 files changed, 1500 insertions(+), 3 deletions(-) create mode 100644 include/compare copy test/libcxx/{containers/associative/set => language.support/cmp}/version.pass [...] create mode 100644 test/std/language.support/cmp/cmp.common/common_comparison_cate [...] create mode 100644 test/std/language.support/cmp/cmp.partialord/partialord.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.strongeq/cmp.strongeq.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.strongord/strongord.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.weakeq/cmp.weakeq.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.weakord/weakord.pass.cpp