summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2018-11-28 18:02:00 +0000
committerLouis Dionne <ldionne@apple.com>2018-11-28 18:02:00 +0000
commit581671fd26b306f0f752c69fc836f31edae89c28 (patch)
tree6b0a14bc595aa5bec49e21e560cefcd2c275bbb3 /docs
parent97c03fb7059fde81773fefe801c269afe7e54d37 (diff)
downloadlibcxx-581671fd26b306f0f752c69fc836f31edae89c28.tar.gz
[libcxx] Remove dynarray
Summary: std::dynarray had been proposed for C++14, but it was pulled out from C++14 and there are no plans to standardize it anymore. Reviewers: mclow.lists, EricWF Subscribers: mgorny, christof, jkorous, dexonsmith, arphaman, libcxx-commits Differential Revision: https://reviews.llvm.org/D54801 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@347783 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 4cf5182a7..b7ad2e2a8 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -48,3 +48,7 @@ API Changes
linking translation units built with different versions of libc++'s headers
together may lead to ODR violations and ABI issues. On the flipside, code
size improvements should be expected for everyone not defining the macro.
+- Starting with LLVM 8.0.0, std::dynarray has been removed from the library.
+ std::dynarray was a feature proposed for C++14 that was pulled from the
+ Standard at the last minute and was never standardized. Since there are no
+ plans to standardize this facility it is being removed.