diff options
Diffstat (limited to 'biology/bolt-lmm/files/patch-src_StatsUtils.cpp')
-rw-r--r-- | biology/bolt-lmm/files/patch-src_StatsUtils.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/biology/bolt-lmm/files/patch-src_StatsUtils.cpp b/biology/bolt-lmm/files/patch-src_StatsUtils.cpp deleted file mode 100644 index 7e4e35d33963..000000000000 --- a/biology/bolt-lmm/files/patch-src_StatsUtils.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- src/StatsUtils.cpp.orig 2019-08-03 00:24:37 UTC -+++ src/StatsUtils.cpp -@@ -33,8 +33,8 @@ namespace StatsUtils { - if (n <= 1) return NAN; - double s = 0.0, s2 = 0.0; - for (uint64 i = 0; i < n; i++) { -- if (isnan(x[i])) return NAN; -- if (isinf(x[i])) return INFINITY; -+ if (std::isnan(x[i])) return NAN; -+ if (std::isinf(x[i])) return INFINITY; - s += x[i]; - s2 += x[i]*x[i]; - } |