diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-06-13 20:46:44 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-06-21 12:20:35 +0200 |
commit | 6a053f9e8f0c69635bb1540498939e142ef2763c (patch) | |
tree | 9f88a016af830efa51f578d84e135638db90053a /sci-libs/symengine | |
parent | sci-libs/opencascade: drop 7.6.0-r4 (diff) | |
download | gentoo-6a053f9e8f0c69635bb1540498939e142ef2763c.tar.gz gentoo-6a053f9e8f0c69635bb1540498939e142ef2763c.tar.bz2 gentoo-6a053f9e8f0c69635bb1540498939e142ef2763c.zip |
sci-libs/symengine: remove unused patch
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/25878
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-libs/symengine')
-rw-r--r-- | sci-libs/symengine/files/symengine-0.7.0-boost-1.77.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sci-libs/symengine/files/symengine-0.7.0-boost-1.77.patch b/sci-libs/symengine/files/symengine-0.7.0-boost-1.77.patch deleted file mode 100644 index c4d6dc28e8f8..000000000000 --- a/sci-libs/symengine/files/symengine-0.7.0-boost-1.77.patch +++ /dev/null @@ -1,19 +0,0 @@ -https://github.com/symengine/symengine/commit/ceae675dccd593f119f3010d46e133de74fc01bc -https://bugs.gentoo.org/808057 - -From: Liam Keegan <liam@keegan.ch> -Date: Mon, 31 May 2021 21:31:02 +0200 -Subject: [PATCH] use list initialization for int parameter since type depends - on boost version - ---- a/symengine/mp_boost.cpp -+++ b/symengine/mp_boost.cpp -@@ -279,7 +279,7 @@ unsigned long mp_scan1(const integer_class &i) - if (i == 0) { - return ULONG_MAX; - } -- return find_lsb(i, int_<0>()); -+ return find_lsb(i, {}); - } - - // define simple 2x2 matrix with exponentiation by repeated squaring |