sci-biology/allpathslg: remove unused patch
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Sun, 29 Jan 2017 08:34:32 +0000 (09:34 +0100)
committerDavid Seifert <soap@gentoo.org>
Sun, 29 Jan 2017 20:09:12 +0000 (21:09 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3708

sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch [deleted file]

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 (file)
index 46e5493..0000000
+++ /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()) {