diff options
author | Eric Fiselier <eric@efcs.ca> | 2019-05-23 23:46:44 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2019-05-23 23:46:44 +0000 |
commit | ae02e8944807c7b611ca3645a983c62d464f27a4 (patch) | |
tree | ac2437b2aca07fcb3cd9239bf56142a85c74aa29 /libcxx/docs | |
parent | ffafdb9afc84126fe3156b8075bc3d7d3dad6dfe (diff) | |
download | bcm5719-llvm-ae02e8944807c7b611ca3645a983c62d464f27a4.tar.gz bcm5719-llvm-ae02e8944807c7b611ca3645a983c62d464f27a4.zip |
P0722R3: Implement library support for destroying delete
Summary:
This provides the `std::destroying_delete_t` declaration in C++2a and after. (Even when the compiler doesn't support the language feature).
However, the feature test macro `__cpp_lib_destroying_delete` is only defined when we have both language support and C++2a.
Reviewers: ldionne, ckennelly, serge-sans-paille, EricWF
Reviewed By: EricWF
Subscribers: dexonsmith, riccibruno, christof, jwakely, jdoerfert, mclow.lists, ldionne, libcxx-commits
Differential Revision: https://reviews.llvm.org/D55840
llvm-svn: 361572
Diffstat (limited to 'libcxx/docs')
-rw-r--r-- | libcxx/docs/FeatureTestMacroTable.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/docs/FeatureTestMacroTable.rst b/libcxx/docs/FeatureTestMacroTable.rst index 0748c4c624d..2200a998aa4 100644 --- a/libcxx/docs/FeatureTestMacroTable.rst +++ b/libcxx/docs/FeatureTestMacroTable.rst @@ -182,7 +182,7 @@ Status ------------------------------------------------- ----------------- ``__cpp_lib_constexpr_swap_algorithms`` *unimplemented* ------------------------------------------------- ----------------- - ``__cpp_lib_destroying_delete`` *unimplemented* + ``__cpp_lib_destroying_delete`` ``201806L`` ------------------------------------------------- ----------------- ``__cpp_lib_erase_if`` ``201811L`` ------------------------------------------------- ----------------- |