<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in __memory</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>169a66ea - [libc++] Remove __functional_base</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#169a66ea</link>
        <description>[libc++] Remove __functional_baseReviewed By: ldionne, Quuxplusone, #libcSpies: Mordante, mgorny, libcxx-commits, arichardson, llvm-commits, arphamanDifferential Revision: https://reviews.llvm.org/D119439

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Fri, 11 Feb 2022 18:15:18 +0000</pubDate>
        <dc:creator>Nikolas Klauser &lt;nikolasklauser@berlin.de&gt;</dc:creator>
    </item>
<item>
        <title>fa6b9e40 - [libc++] Normalize all our &apos;#pragma GCC system_header&apos;, and regression-test.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#fa6b9e40</link>
        <description>[libc++] Normalize all our &apos;#pragma GCC system_header&apos;, and regression-test.Now we&apos;ll notice if a header forgets to include this magic phrase.Differential Revision: https://reviews.llvm.org/D118800

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Wed, 02 Feb 2022 01:16:40 +0000</pubDate>
        <dc:creator>Arthur O&apos;Dwyer &lt;arthur.j.odwyer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4d81a46f - [libc++] Alphabetize header #includes. NFCI.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#4d81a46f</link>
        <description>[libc++] Alphabetize header #includes. NFCI.The NFC part of D116809. We still want to enforce this in CI,but the mechanism for that is still to-be-determined.Differential Revision: https://reviews.llvm.org/D116809

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Fri, 07 Jan 2022 14:45:05 +0000</pubDate>
        <dc:creator>Arthur O&apos;Dwyer &lt;arthur.j.odwyer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>413c3c4f - [libc++] Add missing `#pragma GCC system_header` in a few headers. NFCI.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#413c3c4f</link>
        <description>[libc++] Add missing `#pragma GCC system_header` in a few headers. NFCI.

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Sun, 05 Dec 2021 18:08:36 +0000</pubDate>
        <dc:creator>Arthur O&apos;Dwyer &lt;arthur.j.odwyer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>050b064f - [libcxx][functional][modular] splices &lt;functional&gt; into modular headers</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#050b064f</link>
        <description>[libcxx][functional][modular] splices &lt;functional&gt; into modular headersDifferential Revision: https://reviews.llvm.org/D104942

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Thu, 01 Jul 2021 13:25:35 +0000</pubDate>
        <dc:creator>Christopher Di Bella &lt;cjdb@google.com&gt;</dc:creator>
    </item>
<item>
        <title>b66754a2 - Revert &quot;[coroutines] Add std::experimental::task&lt;T&gt; type&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#b66754a2</link>
        <description>Revert &quot;[coroutines] Add std::experimental::task&lt;T&gt; type&quot;This revision is causing build and test failures, such ashttp://lab.llvm.org:8011/builders/libcxx-libcxxabi-libunwind-armv8-linux/builds/648/steps/test.libcxx/logs/stdio,so I&apos;ll revert it.llvm-svn: 357023

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Tue, 26 Mar 2019 19:50:46 +0000</pubDate>
        <dc:creator>Brian Gesiak &lt;modocache@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>57839425 - [coroutines] Add std::experimental::task&lt;T&gt; type</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#57839425</link>
        <description>[coroutines] Add std::experimental::task&lt;T&gt; typeSummary:Adds the coroutine `std::experimental::task&lt;T&gt;` type described in proposal P1056R0.See https://wg21.link/P1056R0.This implementation allows customization of the allocator used to allocate thecoroutine frame by passing std::allocator_arg as the first argument, followed bythe allocator to use.This supports co_awaiting the same task multiple times. The second andsubsequent times it returns a reference to the already-computed value.This diff also adds some implementations of other utilities that have potential forstandardization as helpers within the test/... area:- `sync_wait(awaitable)` - See P1171R0- `manual_reset_event`Move the definition of the __aligned_allocation_size helper functionfrom &lt;experimental/memory_resource&gt; to &lt;experimental/__memory&gt;so it can be more widely used without pulling in memory_resource.Outstanding work:- Use C++14 keywords directly rather than macro versions  eg. use `noexcept` instead of `_NOEXCEPT`).- Add support for overaligned coroutine frames.  This may need wording in the Coroutines TS to support passing the extra `std::align_val_t`.- Eliminate use of `if constexpr` if we want it to compile under C++14.Patch by @lewissbaker (Lewis Baker).llvm-svn: 357010

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Tue, 26 Mar 2019 17:46:06 +0000</pubDate>
        <dc:creator>Brian Gesiak &lt;modocache@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>57b08b09 - Update more file headers across all of the LLVM projects in the monorepo</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#57b08b09</link>
        <description>Update more file headers across all of the LLVM projects in the monorepoto reflect the new license. These used slightly different spellings thatdefeated my regular expressions.We understand that people may be surprised that we&apos;re moving the headerentirely to discuss the new license. We checked this carefully with theFoundation&apos;s lawyer and we believe this is the correct approach.Essentially, all code in the project is now made available by the LLVMproject under our new license, so you will see that the license headersinclude that license only. Some of our contributors have contributedcode under our old license, and accordingly, we have retained a copy ofour old license notice in the top-level files in each project andrepository.llvm-svn: 351648

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Sat, 19 Jan 2019 10:56:40 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>15551efd - Add &lt;experimental/memory_resource&gt;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/experimental/__memory#15551efd</link>
        <description>Add &lt;experimental/memory_resource&gt;Reviewers: mclow.lists, EricWFSubscribers: cfe-commitsDifferential Revision: http://reviews.llvm.org/D20007llvm-svn: 268829

            List of files:
            /llvm-project-15.0.7/libcxx/include/experimental/__memory</description>
        <pubDate>Sat, 07 May 2016 01:04:55 +0000</pubDate>
        <dc:creator>Eric Fiselier &lt;eric@efcs.ca&gt;</dc:creator>
    </item>
</channel>
</rss>
