summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2021-08-01 18:40:42 +0200
committerDavid Seifert <soap@gentoo.org>2021-08-01 18:40:42 +0200
commitb3c6b97c03059d44b801c71c3ccf7a6165593149 (patch)
tree95d0f1e1aeb45338008245b4957b59e2dd3cfcca /sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch
parentsci-biology/bowtie: add 2.4.4 (diff)
downloadgentoo-b3c6b97c03059d44b801c71c3ccf7a6165593149.tar.gz
gentoo-b3c6b97c03059d44b801c71c3ccf7a6165593149.tar.bz2
gentoo-b3c6b97c03059d44b801c71c3ccf7a6165593149.zip
sci-biology/bowtie: drop 2.2.9
Closes: https://bugs.gentoo.org/722870 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch')
-rw-r--r--sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch b/sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch
deleted file mode 100644
index cd2a67b6a52b..000000000000
--- a/sci-biology/bowtie/files/bowtie-2.2.9-fix-c++14.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Fix building with C++14, which errors out due to differing semantics between C++98
-and C++14 with regards to allowing destructors to throw exceptions.
-See also: https://bugs.gentoo.org/show_bug.cgi?id=593966
-
---- a/blockwise_sa.h
-+++ b/blockwise_sa.h
-@@ -87,7 +87,11 @@
- _logger(__logger)
- { }
-
-- virtual ~BlockwiseSA() { }
-+ virtual ~BlockwiseSA()
-+#if __cplusplus >= 201103L
-+ noexcept(false)
-+#endif
-+ { }
-
- /**
- * Get the next suffix; compute the next bucket if necessary.
-@@ -216,6 +220,9 @@
- { _randomSrc.init(__seed); reset(); }
-
- ~KarkkainenBlockwiseSA()
-+#if __cplusplus >= 201103L
-+ noexcept(false)
-+#endif
- {
- #ifdef WITH_TBB
- tbb_grp.wait();