summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-chemistry/reduce/files/reduce-3.16.111118-fix-c++14.patch')
-rw-r--r--sci-chemistry/reduce/files/reduce-3.16.111118-fix-c++14.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/sci-chemistry/reduce/files/reduce-3.16.111118-fix-c++14.patch b/sci-chemistry/reduce/files/reduce-3.16.111118-fix-c++14.patch
deleted file mode 100644
index 5a45b7cef49c..000000000000
--- a/sci-chemistry/reduce/files/reduce-3.16.111118-fix-c++14.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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