<?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 deduct.fail.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>5425106e - [libc++] Remove test-suite annotations for unsupported Clang versions</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#5425106e</link>
        <description>[libc++] Remove test-suite annotations for unsupported Clang versionsDifferential Revision: https://reviews.llvm.org/D108471

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Fri, 20 Aug 2021 15:42:38 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne.2@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>01666904 - [libc++] Remove workarounds for the lack of deduction guides in C++17</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#01666904</link>
        <description>[libc++] Remove workarounds for the lack of deduction guides in C++17All supported compilers have supported deduction guides in C++17 for awhile, so this isn&apos;t necessary anymore.Differential Revision: https://reviews.llvm.org/D108213

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Tue, 17 Aug 2021 15:59:07 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne.2@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>31cbe0f2 - [libc++] Remove the c++98 Lit feature from the test suite</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#31cbe0f2</link>
        <description>[libc++] Remove the c++98 Lit feature from the test suiteC++98 and C++03 are effectively aliases as far as Clang is concerned.As such, allowing both std=c++98 and std=c++03 as Lit parameters isjust slightly confusing, but provides no value. It&apos;s similar to allowingboth std=c++17 and std=c++1z, which we don&apos;t do.This was discovered because we had an internal bot that ran the testsuite under both c++98 AND c++03 -- one of which is redundant.Differential Revision: https://reviews.llvm.org/D80926

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Mon, 01 Jun 2020 14:38:23 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>3e1480a0 - [libc++] Mark CTAD tests as not failing on AppleClang 10.0.1</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#3e1480a0</link>
        <description>[libc++] Mark CTAD tests as not failing on AppleClang 10.0.1They do fail on AppleClang 10.0.0, but not AppleClang 10.0.1llvm-svn: 372632

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Mon, 23 Sep 2019 17:22:13 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>c45f592b - [libcxx] XFAIL set/multiset CTAD tests on Apple Clang 10</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#c45f592b</link>
        <description>[libcxx] XFAIL set/multiset CTAD tests on Apple Clang 10llvm-svn: 363209

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Wed, 12 Jun 2019 22:01:05 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>903d3db5 - Mark CTAD fail tests for set/multiset as XFAIL for older compilers that give different error messages</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#903d3db5</link>
        <description>Mark CTAD fail tests for set/multiset as XFAIL for older compilers that give different error messagesllvm-svn: 363099

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Tue, 11 Jun 2019 20:35:19 +0000</pubDate>
        <dc:creator>Marshall Clow &lt;mclow.lists@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e20865c3 - [libc++] Implement deduction guides for &lt;set&gt;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp#e20865c3</link>
        <description>[libc++] Implement deduction guides for &lt;set&gt;This is part of C++17&apos;s P0433.Thanks to Arthur O&apos;Dwyer for the patch.Differential Revision: https://reviews.llvm.org/D58582llvm-svn: 363090

            List of files:
            /llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/multiset.cons/deduct.fail.cpp</description>
        <pubDate>Tue, 11 Jun 2019 18:21:08 +0000</pubDate>
        <dc:creator>Louis Dionne &lt;ldionne@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
