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-biology/prank/files/prank-140603-fix-c++14.patch

15 lines
395 B

Fix building with C++14, which errors out due to changing operator void* -> operator bool.
See also: https://bugs.gentoo.org/show_bug.cgi?id=594060
--- a/hmmodel.cpp
+++ b/hmmodel.cpp
@@ -1499,7 +1499,7 @@
}
else
{
- cout<<"HMModel::alignmentModel: impossible 'as'"<<cout;
+ cout<<"HMModel::alignmentModel: impossible 'as'"<<bool(cout);
exit(-1);
}