3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 16:52:15 +00:00

fix a few build regressions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-06-14 08:34:52 -07:00 committed by Arie Gurfinkel
parent e355123e37
commit bc8ddedc54
4 changed files with 5 additions and 6 deletions

View file

@ -80,8 +80,8 @@ namespace qe {
bool sign = todo.back().first;
todo.pop_back();
if (a.is_add(e)) {
for (expr* e : *to_app(e)) {
todo.push_back(std::make_pair(sign, e));
for (expr* arg : *to_app(e)) {
todo.push_back(std::make_pair(sign, arg));
}
}
else if (a.is_sub(e)) {