summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-29 09:34:32 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-29 21:09:12 +0100
commit7a30103b35c9f3ff203adeafeff7f89aa4345022 (patch)
tree0e13817a7ccc797e1140699d85f5e7bd9f3ce4c0 /sci-biology
parentnet-wireless/gr-osmosdr: remove unused patch (diff)
downloadgentoo-7a30103b35c9f3ff203adeafeff7f89aa4345022.tar.gz
gentoo-7a30103b35c9f3ff203adeafeff7f89aa4345022.tar.bz2
gentoo-7a30103b35c9f3ff203adeafeff7f89aa4345022.zip
sci-biology/allpathslg: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3708
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch b/sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch
deleted file mode 100644
index 46e5493d28ce..000000000000
--- a/sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- src/paths/long/VariantCallTools.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/paths/long/VariantCallTools.cc b/src/paths/long/VariantCallTools.cc
-index dfe2787..725878b 100644
---- a/src/paths/long/VariantCallTools.cc
-+++ b/src/paths/long/VariantCallTools.cc
-@@ -1674,7 +1674,7 @@ void EdgesOnRef::FindAllPathsNoLoop(const GraphT& dg, int entrace_edge, int exit
- int n1 = to_right2[entrace_edge];
- int n2 = to_left2[exit_edge];
-
-- PartialPath start = {{n1},{}};
-+ PartialPath start{{n1},vec<int>{}};
- stack<PartialPath> visited;
- visited.push(start);
- while (! visited.empty()) {