Marshall Clow
2015-Feb-17 19:23 UTC
[LLVMdev] I would like to banish libc++'s <dynarray> implementation into "experimental"
<dynarray> was added to the C++14 standard, libc++ implemented it, and then it was removed. Now (from the standard’s point of view), it is in limbo. I would like to move it into std/experimental; to make it clear that it’s not a part of the standard. Any objections? Anyone using it? — Marshall
Chris Lattner
2015-Feb-17 21:23 UTC
[LLVMdev] [cfe-dev] I would like to banish libc++'s <dynarray> implementation into "experimental"
> On Feb 17, 2015, at 11:23 AM, Marshall Clow <mclow.lists at gmail.com> wrote: > > <dynarray> was added to the C++14 standard, libc++ implemented it, and then it was removed. > > Now (from the standard’s point of view), it is in limbo. > > I would like to move it into std/experimental; to make it clear that it’s not a part of the standard.Seems reasonable to me. -Chris
Chandler Carruth
2015-Feb-17 21:59 UTC
[LLVMdev] I would like to banish libc++'s <dynarray> implementation into "experimental"
On Tue, Feb 17, 2015 at 11:23 AM, Marshall Clow <mclow.lists at gmail.com> wrote:> <dynarray> was added to the C++14 standard, libc++ implemented it, and > then it was removed. > > Now (from the standard’s point of view), it is in limbo. > > I would like to move it into std/experimental; to make it clear that it’s > not a part of the standard. >+1 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150217/03aeac4d/attachment.html>
Marshall Clow
2015-Mar-05 00:16 UTC
[LLVMdev] I would like to banish libc++'s <dynarray> implementation into "experimental"
> On Feb 17, 2015, at 1:59 PM, Chandler Carruth <chandlerc at google.com> wrote: > > > On Tue, Feb 17, 2015 at 11:23 AM, Marshall Clow <mclow.lists at gmail.com <mailto:mclow.lists at gmail.com>> wrote: > <dynarray> was added to the C++14 standard, libc++ implemented it, and then it was removed. > > Now (from the standard’s point of view), it is in limbo. > > I would like to move it into std/experimental; to make it clear that it’s not a part of the standard.Done. The namespace is std::experimental, the code is in the file std/experimental/dynarray (it was there already), and the tests are in test/libcxx/experimental/containers/sequences/dynarray, rather than under test/std. — Marshall -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150304/21595fb1/attachment.html>