diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2022-04-27 18:07:47 +0200 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2022-04-27 18:23:07 +0200 |
commit | ccb729989bd01b5084702152e2d02de3ea5c7984 (patch) | |
tree | 4c7f404b501a79e04a2151160c47e0d975a3e085 /math/lcalc/files/patch-include_Lcommon.h | |
parent | devel/qtcreator: update to 7.0.1 (diff) |
math/lcalc: upgrade to 2.0.5
Changelog at <https://gitlab.com/sagemath/lcalc/-/blob/master/doc/ChangeLog>.
Diffstat (limited to 'math/lcalc/files/patch-include_Lcommon.h')
-rw-r--r-- | math/lcalc/files/patch-include_Lcommon.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/math/lcalc/files/patch-include_Lcommon.h b/math/lcalc/files/patch-include_Lcommon.h deleted file mode 100644 index d387a197612f..000000000000 --- a/math/lcalc/files/patch-include_Lcommon.h +++ /dev/null @@ -1,16 +0,0 @@ ---- include/Lcommon.h.orig 2020-03-29 15:43:34 UTC -+++ include/Lcommon.h -@@ -1,3 +1,4 @@ -+// Patches borrowed from SageMath. - // When MPFR is enabled and double is passed to a templated function - // The function should use precise(ttype) to make sure calculations run - // within the more precise type -@@ -48,7 +49,7 @@ const bool outputSeries=true; // Whether to output t - - // Loop i from m to n - // Useful in tidying up most for loops --#define loop(i,m,n) for(typeof(m) i=(m); i!=(n); i++) -+#define loop(i,m,n) for(auto i=(m); i!=(n); i++) - - // A class for calculations involving polynomials of small degree - // Not efficient enough for huge polynomials |