vcpkg/ports/symengine/fix-build.patch

14 lines
413 B
Diff
Raw Normal View History

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