You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/libmems/files/libmems-1.6_p1-fix-c++14.patch

19 lines
715 B

Description: Correct compilation with g++-6
Author: Gert Wollny <gw.fossdev@gmail.com>
Bug-Debian: https://bugs.debian.org/811870
Forwarded: yes
Bug: https://sourceforge.net/p/mauve/bugs/46/
Last-Update: 2016-06-30
--- a/libMems/ProgressiveAligner.cpp
+++ b/libMems/ProgressiveAligner.cpp
@@ -1599,7 +1599,7 @@
c.SetLeftEnd(child_1, ancestral_matches[mI]->LeftEnd(1));
c.SetOrientation(child_1, ancestral_matches[mI]->Orientation(1));
c.SetLength(ancestral_matches[mI]->Length(1), child_1);
- cga_list.push_back(make_tuple(c.Copy(), &bs[mI], ancestral_matches[mI]));
+ cga_list.push_back(boost::tuples::make_tuple(c.Copy(), &bs[mI], ancestral_matches[mI]));
}
stack<node_id_t> node_stack;