<?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 execution</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>385cc25a - [libc++] Ensure that all public C++ headers include &lt;__assert&gt;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#385cc25a</link>
        <description>[libc++] Ensure that all public C++ headers include &lt;__assert&gt;This patch changes the requirement for getting the declaration of theassertion handler from including &lt;__assert&gt; to including any publicC++ header of the library. Note that C compatibility headers areexcluded because we don&apos;t implement all the C headers ourselves --some of them are taken straight from the C library, like assert.h.It also adds a generated test to check it. Furthermore, this newgenerated test is designed in a way that will make it possible toreplace almost all the existing test-generation scripts with thissystem in upcoming patches.Differential Revision: https://reviews.llvm.org/D122506

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Fri, 25 Mar 2022 16:55:36 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne.2@gmail.com&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/execution#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/execution</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>bd6e6846 - [libc++] Add the version header to all headers.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#bd6e6846</link>
        <description>[libc++] Add the version header to all headers.Some headers which require the version header depend on other headers toprovide it. Include the version header in all top-level headers to makesure a header cleanup can&apos;t remove the version header.Note this doesn&apos;t add the version header to the c headers.Reviewed By: #libc, Quuxplusone, ldionneDifferential Revision: https://reviews.llvm.org/D116172

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Wed, 22 Dec 2021 17:14:14 +0000</pubDate>
        <dc:creator>Mark de Wever &lt;koraq@xs4all.nl&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/execution#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/execution</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>eb8650a7 - [runtimes][NFC] Remove filenames at the top of the license notice</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#eb8650a7</link>
        <description>[runtimes][NFC] Remove filenames at the top of the license noticeWe&apos;ve stopped doing it in libc++ for a while now because these nameswould end up rotting as we move things around and copy/paste stuff.This cleans up all the existing files so as to stop the spreadingas people copy-paste headers around.

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Wed, 17 Nov 2021 21:25:01 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne.2@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>95689243 - [pstl][libc++] Provide uglified header names for interface headers</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#95689243</link>
        <description>[pstl][libc++] Provide uglified header names for interface headersFor the few (currently four) headers that make up the PSTL&apos;s interfaceto other Standard Libraries, provide a stable uglified header file thatcan be included by those Standard Libraries.We can then more easily change the internal organization of the PSTLwithout having to change the integration with Standard Libraries.llvm-svn: 368088

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Tue, 06 Aug 2019 21:11:24 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>0a06eb91 - [libc++] Take 2: Integrate the PSTL into libc++</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#0a06eb91</link>
        <description>[libc++] Take 2: Integrate the PSTL into libc++Summary:This commit allows specifying LIBCXX_ENABLE_PARALLEL_ALGORITHMS whenconfiguring libc++ in CMake. When that option is enabled, libc++ willassume that the PSTL can be found somewhere on the CMake module path,and it will provide the C++17 parallel algorithms based on the PSTL(that is assumed to be available).The commit also adds support for running the PSTL tests as part ofthe libc++ test suite.The first attempt to commit this failed because it exposed a bug in thetests for modules. Now that this has been fixed, it should be safe tocommit this.Reviewers: EricWFSubscribers: mgorny, christof, jkorous, dexonsmith, libcxx-commits, mclow.lists, EricWFTags: #libcDifferential Revision: https://reviews.llvm.org/D60480llvm-svn: 367903

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Mon, 05 Aug 2019 18:29:14 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>910323e6 - [libc++] Integrate the PSTL into libc++</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/include/execution#910323e6</link>
        <description>[libc++] Integrate the PSTL into libc++Summary:This commit allows specifying LIBCXX_ENABLE_PARALLEL_ALGORITHMS whenconfiguring libc++ in CMake. When that option is enabled, libc++ willassume that the PSTL can be found somewhere on the CMake module path,and it will provide the C++17 parallel algorithms based on the PSTL(that is assumed to be available).The commit also adds support for running the PSTL tests as part ofthe libc++ test suite.Reviewers: rodgert, EricWFSubscribers: mgorny, christof, jkorous, dexonsmith, libcxx-commits, mclow.lists, EricWFTags: #libcDifferential Revision: https://reviews.llvm.org/D60480llvm-svn: 366593

            List of files:
            /llvm-project-15.0.7/libcxx/include/execution</description>
        <pubDate>Fri, 19 Jul 2019 17:02:42 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
