aboutsummaryrefslogtreecommitdiff
path: root/ports/symengine/fix-build.patch
blob: 5087428e60f7f71a0c22eb4e78c11a63ee0ed673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/symengine/mp_boost.cpp b/symengine/mp_boost.cpp
index db20930c4..f3997707e 100644
--- 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