aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-biology/abyss/files/abyss-2.2.5-ContigProperties.h.patch')
-rw-r--r--sci-biology/abyss/files/abyss-2.2.5-ContigProperties.h.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/sci-biology/abyss/files/abyss-2.2.5-ContigProperties.h.patch b/sci-biology/abyss/files/abyss-2.2.5-ContigProperties.h.patch
deleted file mode 100644
index 95181f082..000000000
--- a/sci-biology/abyss/files/abyss-2.2.5-ContigProperties.h.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- abyss-2.2.5/Common/ContigProperties.h.ori 2020-09-18 20:42:12.000000000 +0200
-+++ abyss-2.2.5/Common/ContigProperties.h 2021-04-14 12:31:23.682158000 +0200
-@@ -171,7 +171,7 @@
- template <typename T>
- ContigProperties& operator+=(ContigProperties& a, const T& b)
- {
-- assert((int)a.length + (int)b.distance > 0);
-+ assert((int)a.length + (int)b.distance >= 0);
- a.length += b.distance;
- return a;
- }