mirror of
https://github.com/Z3Prover/z3
synced 2025-11-25 23:19:32 +00:00
fix the build
This commit is contained in:
parent
5f5f1d4fd1
commit
8904a50103
2 changed files with 2 additions and 3 deletions
|
|
@ -47,7 +47,7 @@ template <typename T>
|
|||
using row_strip = vector<row_cell<T>>;
|
||||
template <typename K> mpq get_denominators_lcm(const K & row) {
|
||||
mpq r = mpq(1);
|
||||
for (auto & c : row)
|
||||
for (const auto & c : row)
|
||||
r = lcm(r, denominator(c.coeff()));
|
||||
return r;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue