blob: 5a45b7cef49ccf35d3365c9a5cb8f86953424075 (
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 an erroneous std::cerr.
See also: https://bugs.gentoo.org/show_bug.cgi?id=594202
--- a/reduce_src/GraphToHoldScores.cpp
+++ b/reduce_src/GraphToHoldScores.cpp
@@ -1150,7 +1150,7 @@
}
}
std::cerr << "CRITICAL ERROR IN whichVertex(" << vertex_index << ") called on edge [" <<
- std::cerr << vertex_indices_[ 0 ] << ", " << vertex_indices_[ 1 ] << "]" << std::endl;
+ vertex_indices_[ 0 ] << ", " << vertex_indices_[ 1 ] << "]" << std::endl;
assert(false);
exit(1);
return 0; // to avoid warnings
|