summaryrefslogtreecommitdiff
path: root/sci-biology/express/files/express-1.5.1-gcc6.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-02 17:46:37 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-10-02 17:46:37 +0100
commit19ad4b65c8b02065c065c91941241f231f78246c (patch)
tree9f4d20e15a87cf1ce08bee5a4bc953fe7dd3a03e /sci-biology/express/files/express-1.5.1-gcc6.patch
parentfade240e5eae2521e59569af4ab63e27415f4e5b (diff)
gentoo auto-resync : 02:10:2023 - 17:46:37
Diffstat (limited to 'sci-biology/express/files/express-1.5.1-gcc6.patch')
-rw-r--r--sci-biology/express/files/express-1.5.1-gcc6.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/sci-biology/express/files/express-1.5.1-gcc6.patch b/sci-biology/express/files/express-1.5.1-gcc6.patch
deleted file mode 100644
index 8a608b97b056..000000000000
--- a/sci-biology/express/files/express-1.5.1-gcc6.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Bug: https://bugs.gentoo.org/610692
-
---- a/src/targets.cpp
-+++ b/src/targets.cpp
-@@ -113,12 +113,12 @@
-
- double ll = LOG_1;
- double tot_mass = mass(with_pseudo);
-- double tot_eff_len = cached_effective_length(lib.bias_table);
-+ double tot_eff_len = cached_effective_length(static_cast<bool>(lib.bias_table));
- if (neighbors) {
- foreach (const Target* neighbor, *neighbors) {
- tot_mass = log_add(tot_mass, neighbor->mass(with_pseudo));
- tot_eff_len = log_add(tot_eff_len,
-- neighbor->cached_effective_length(lib.bias_table));
-+ neighbor->cached_effective_length(static_cast<bool>(lib.bias_table)));
- }
- }
- ll += tot_mass - tot_eff_len;