3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

Fix compile error GCC 6.3.1 (#4274)

auto deduce compile error
This commit is contained in:
pjneary 2020-05-11 20:41:34 -04:00 committed by GitHub
parent 1be22a80f6
commit e254e890a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,9 @@ bool nex_creator::gt_on_powers_mul_same_degree(const T& a, const nex_mul& b) con
bool ret = false;
unsigned a_pow = a.begin()->pow();
unsigned b_pow = b.begin()->pow();
for (auto it_a = a.begin(), it_b = b.begin(); it_a != a.end() && it_b != b.end(); ) {
auto it_a = a.begin();
auto it_b = b.begin();
for (; it_a != a.end() && it_b != b.end(); ) {
if (gt(it_a->e(), it_b->e())){
ret = true;
break;