blob: 5779207e294f0c8b9e1d089f4ccc9ae62fd9cbde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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);
}
|