<?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 trailing-return-0x.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>9cf98d26 - PR46637: Fix handling of placeholder types in trailing-return-types.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#9cf98d26</link>
        <description>PR46637: Fix handling of placeholder types in trailing-return-types.Only permit a placeholder type in a trailing-return-type if it wouldalso have been permitted in the decl-specifier sequence of acorresponding declaration with no trailing-return-type. The standarddoesn&apos;t actually say this, but this is the only thing that makes sense.Also fix handling of an &apos;auto&apos; in a trailing-return-type in a parameterof a generic lambda. We used to crash if we saw such a thing.

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Tue, 28 Jul 2020 22:51:13 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>dd69ef38 - C++1y is now C++14!</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#dd69ef38</link>
        <description>C++1y is now C++14!Changes diagnostic options, language standard options, diagnostic identifiers, diagnostic wording to use c++14 instead of c++1y. It also modifies related test cases to use the updated diagnostic wording.llvm-svn: 215982

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Tue, 19 Aug 2014 15:55:55 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
<item>
        <title>2add1146 - Fix crash-on-invalid if decltype(auto) is used as a deduced return type in</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#2add1146</link>
        <description>Fix crash-on-invalid if decltype(auto) is used as a deduced return type inC++11 mode. Continue to disallow return type deduction in C++11 for now.llvm-svn: 201438

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Fri, 14 Feb 2014 22:17:32 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>5ed79566 - PR16273: Weaken a bogus assertion.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#5ed79566</link>
        <description>PR16273: Weaken a bogus assertion.llvm-svn: 183550

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Fri, 07 Jun 2013 20:03:01 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>0feaf0c7 - Implement core issue 1608: class members can be found via operator lookup in a trailing return type in that class&apos;s body.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#0feaf0c7</link>
        <description>Implement core issue 1608: class members can be found via operator lookup in a trailing return type in that class&apos;s body.llvm-svn: 179941

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Sat, 20 Apr 2013 12:41:22 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>88d67f34 - Fix crash when a decltype expression in a trailing return type refers to the</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#88d67f34</link>
        <description>Fix crash when a decltype expression in a trailing return type refers to thefunction being instantiated. An error recovery codepath was recursivelyperforming name lookup (and triggering an unbounded stack of templateinstantiations which blew out the stack before hitting the depth limit).Patch by Wei Pan!llvm-svn: 164586

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Tue, 25 Sep 2012 04:46:05 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>5e580292 - Track whether a function type has a trailing return type as type sugar. Use this</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#5e580292</link>
        <description>Track whether a function type has a trailing return type as type sugar. Use thisto pretty-print such function types better, and to fix a case where we were notinstantiating templates in lexical order. In passing, move the Variadic bit fromType&apos;s bitfields to FunctionProtoType to get the Type bitfields down to 32 bits.Also ensure that we always substitute the return type of a function whensubstituting explicitly-specified arguments, since that can cause us to bailout with a SFINAE error before we hit a hard error in parameter substitution.llvm-svn: 150241

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Fri, 10 Feb 2012 09:58:53 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>9ca5c425 - Update all tests other than Driver/std.cpp to use -std=c++11 rather than</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#9ca5c425</link>
        <description>Update all tests other than Driver/std.cpp to use -std=c++11 rather than-std=c++0x. Patch by Ahmed Charles!llvm-svn: 141900

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Thu, 13 Oct 2011 22:29:44 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>30482bc7 - Implement the C++0x deduced &apos;auto&apos; feature.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#30482bc7</link>
        <description>Implement the C++0x deduced &apos;auto&apos; feature.This fixes PR 8738, 9060 and 9132.llvm-svn: 126069

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Sun, 20 Feb 2011 03:19:35 +0000</pubDate>
        <dc:creator>Richard Smith &lt;richard-llvm@metafoo.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>7fb25418 - Implement the C++0x &quot;trailing return type&quot; feature, e.g.,</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp#7fb25418</link>
        <description>Implement the C++0x &quot;trailing return type&quot; feature, e.g.,  auto f(int) -&gt; intfrom Daniel Wallin!(With a few minor bug fixes from me).llvm-svn: 115322

            List of files:
            /llvm-project-15.0.7/clang/test/SemaCXX/trailing-return-0x.cpp</description>
        <pubDate>Fri, 01 Oct 2010 18:44:50 +0000</pubDate>
        <dc:creator>Douglas Gregor &lt;dgregor@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
