<?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 stdexcept</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>e710425b - Merge llvm-project main llvmorg-18-init-15692-g007ed0dccd6a</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept#e710425b</link>
        <description>Merge llvm-project main llvmorg-18-init-15692-g007ed0dccd6aThis updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb andopenmp to llvm-project main llvmorg-18-init-15692-g007ed0dccd6a.PR:		276104MFC after:	1 month(cherry picked from commit cb14a3fe5122c879eae1fb480ed7ce82a699ddb6)

            List of files:
            /freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept</description>
        <pubDate>Mon, 25 Dec 2023 17:35:41 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c9157d92 - Merge llvm-project main llvmorg-18-init-15088-gd14ee76181fb</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept#c9157d92</link>
        <description>Merge llvm-project main llvmorg-18-init-15088-gd14ee76181fbThis updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb andopenmp to llvm-project main llvmorg-18-init-15088-gd14ee76181fb.PR:		276104MFC after:	1 month(cherry picked from commit 5f757f3ff9144b609b3c433dfd370cc6bdc191ad)

            List of files:
            /freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept</description>
        <pubDate>Mon, 18 Dec 2023 20:30:12 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fe013be4 - Merge llvm-project main llvmorg-17-init-19304-gd0b54bb50e51</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept#fe013be4</link>
        <description>Merge llvm-project main llvmorg-17-init-19304-gd0b54bb50e51This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb andopenmp to llvm-project main llvmorg-17-init-19304-gd0b54bb50e51, thelast commit before the upstream release/17.x branch was created.PR:		273753MFC after:	1 month(cherry picked from commit 06c3fb2749bda94cb5201f81ffdb8fa6c3161b2e)

            List of files:
            /freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept</description>
        <pubDate>Sat, 02 Sep 2023 21:17:18 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9ec406dc - Merge commit 585a3cc31 from llvm git (by me):</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept#9ec406dc</link>
        <description>Merge commit 585a3cc31 from llvm git (by me):  Fix -Wdeprecated-copy-dtor and -Wdeprecated-dynamic-exception-spec  warnings.  Summary:  The former are like:  libcxx/include/typeinfo:322:11: warning: definition of implicit copy  constructor for &apos;bad_cast&apos; is deprecated because it has a  user-declared destructor [-Wdeprecated-copy-dtor]    virtual ~bad_cast() _NOEXCEPT;	    ^  libcxx/include/typeinfo:344:11: note: in implicit copy constructor  for &apos;std::bad_cast&apos; first required here      throw bad_cast();	    ^  Fix these by adding an explicitly defaulted copy constructor.  The latter are like:  libcxx/include/codecvt:105:37: warning: dynamic exception  specifications are deprecated [-Wdeprecated-dynamic-exception-spec]      virtual int do_encoding() const throw();				      ^~~~~~~  Fix these by using the _NOEXCEPT macro instead.  Reviewers: EricWF, mclow.lists, ldionne, #libc  Reviewed By: EricWF, #libc  Subscribers: dexonsmith, libcxx-commits  Tags: #libc  Differential Revision: https://reviews.llvm.org/D76150This is because we use -Wsystem-headers during buildworld, and the twowarnings above are now triggered by default with clang 10, preventingmost C++ code from compiling without NO_WERROR.Requested by:	brooksMFC after:	6 weeksX-MFC-With:	358851Differential Revision: https://reviews.freebsd.org/D24049

            List of files:
            /freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept</description>
        <pubDate>Wed, 18 Mar 2020 20:50:30 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0b57cec5 - Move all sources from the llvm project into contrib/llvm-project.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept#0b57cec5</link>
        <description>Move all sources from the llvm project into contrib/llvm-project.This uses the new layout of the upstream repository, which was recentlymigrated to GitHub, and converted into a &quot;monorepo&quot;.  That is, most ofthe earlier separate sub-projects with their own branches and tags wereconsolidated into one top-level directory, and are now branched andtagged together.Updating the vendor area to match this layout is next.

            List of files:
            /freebsd-14.2/contrib/llvm-project/libcxx/include/stdexcept</description>
        <pubDate>Fri, 20 Dec 2019 19:53:05 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
