From b1c81de4fadbd00897700a7321f03b390d952b2e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 26 Aug 2021 00:09:36 +0100 Subject: gentoo resync : 26.08.2021 --- .../libcutl/files/libcutl-1.10.0-fix-c++14.patch | 53 ---------------------- 1 file changed, 53 deletions(-) delete mode 100644 dev-cpp/libcutl/files/libcutl-1.10.0-fix-c++14.patch (limited to 'dev-cpp/libcutl/files/libcutl-1.10.0-fix-c++14.patch') diff --git a/dev-cpp/libcutl/files/libcutl-1.10.0-fix-c++14.patch b/dev-cpp/libcutl/files/libcutl-1.10.0-fix-c++14.patch deleted file mode 100644 index a6f1a505485b..000000000000 --- a/dev-cpp/libcutl/files/libcutl-1.10.0-fix-c++14.patch +++ /dev/null @@ -1,53 +0,0 @@ -Make dtors noexcept(false) when compiling in C++11 and above. This avoids silent -breakage due to the semantic exception changes between C++98 and C++11. - ---- a/cutl/fs/auto-remove.cxx -+++ b/cutl/fs/auto-remove.cxx -@@ -13,6 +13,9 @@ - { - auto_remove:: - ~auto_remove () -+#if __cplusplus >= 201103L -+ noexcept(false) -+#endif - { - if (!canceled_) - { -@@ -23,6 +26,9 @@ - - auto_removes:: - ~auto_removes () -+#if __cplusplus >= 201103L -+ noexcept(false) -+#endif - { - if (!canceled_) - { ---- a/cutl/fs/auto-remove.hxx -+++ b/cutl/fs/auto-remove.hxx -@@ -26,7 +26,11 @@ - { - } - -- ~auto_remove (); -+ ~auto_remove () -+#if __cplusplus >= 201103L -+ noexcept(false) -+#endif -+ ; - - void - cancel () -@@ -51,7 +55,11 @@ - struct LIBCUTL_EXPORT auto_removes - { - auto_removes (): canceled_ (false) {} -- ~auto_removes (); -+ ~auto_removes () -+#if __cplusplus >= 201103L -+ noexcept(false) -+#endif -+ ; - - void - add (path const& p) -- cgit v1.2.3