3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-25 23:19:32 +00:00

fix the build

This commit is contained in:
Lev Nachmanson 2024-10-21 14:21:02 -07:00 committed by Lev Nachmanson
parent 5f5f1d4fd1
commit 8904a50103
2 changed files with 2 additions and 3 deletions

View file

@ -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;
}