mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 22:39:13 +08:00
14 lines
413 B
Diff
14 lines
413 B
Diff
|
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
|