This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 9d9372a34 Cleaup of requirements for optional. While researching LWG319 [...] new e83c41a26 [coroutines] Add std::experimental::task<T> type
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/experimental/__memory | 7 + include/experimental/memory_resource | 8 - include/experimental/task | 503 +++++++++++++++++++++ include/module.modulemap | 4 + test/std/experimental/task/awaitable_traits.hpp | 117 +++++ test/std/experimental/task/counted.hpp | 96 ++++ .../support.coroutines => task}/lit.local.cfg | 0 test/std/experimental/task/manual_reset_event.hpp | 127 ++++++ test/std/experimental/task/sync_wait.hpp | 284 ++++++++++++ .../task/task.basic/task_custom_allocator.pass.cpp | 230 ++++++++++ .../task/task.basic/task_of_value.pass.cpp | 70 +++ .../task/task.basic/task_of_void.pass.cpp | 96 ++++ .../task.lifetime/task_parameter_lifetime.pass.cpp | 57 +++ .../task_return_value_lifetime.pass.cpp | 86 ++++ 15 files changed, 1678 insertions(+), 8 deletions(-) create mode 100644 include/experimental/task create mode 100644 test/std/experimental/task/awaitable_traits.hpp create mode 100644 test/std/experimental/task/counted.hpp copy test/std/experimental/{language.support/support.coroutines => task}/lit.local [...] create mode 100644 test/std/experimental/task/manual_reset_event.hpp create mode 100644 test/std/experimental/task/sync_wait.hpp create mode 100644 test/std/experimental/task/task.basic/task_custom_allocator.pass.cpp create mode 100644 test/std/experimental/task/task.basic/task_of_value.pass.cpp create mode 100644 test/std/experimental/task/task.basic/task_of_void.pass.cpp create mode 100644 test/std/experimental/task/task.lifetime/task_parameter_lifetim [...] create mode 100644 test/std/experimental/task/task.lifetime/task_return_value_life [...]