Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/allpathslg/files: allpathslg-47093-gcc4.9.patch
Date: Tue, 31 Mar 2015 09:32:59
Message-Id: 20150331093253.6118D14E89@oystercatcher.gentoo.org
1 jlec 15/03/31 09:32:52
2
3 Added: allpathslg-47093-gcc4.9.patch
4 Log:
5 Fix for newer gcc, bug #514654
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.1 sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpathslg/files/allpathslg-47093-gcc4.9.patch?rev=1.1&content-type=text/plain
14
15 Index: allpathslg-47093-gcc4.9.patch
16 ===================================================================
17 src/paths/long/VariantCallTools.cc | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/src/paths/long/VariantCallTools.cc b/src/paths/long/VariantCallTools.cc
21 index dfe2787..725878b 100644
22 --- a/src/paths/long/VariantCallTools.cc
23 +++ b/src/paths/long/VariantCallTools.cc
24 @@ -1674,7 +1674,7 @@ void EdgesOnRef::FindAllPathsNoLoop(const GraphT& dg, int entrace_edge, int exit
25 int n1 = to_right2[entrace_edge];
26 int n2 = to_left2[exit_edge];
27
28 - PartialPath start = {{n1},{}};
29 + PartialPath start{{n1},vec<int>{}};
30 stack<PartialPath> visited;
31 visited.push(start);
32 while (! visited.empty()) {