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:
parent
e355123e37
commit
bc8ddedc54
4 changed files with 5 additions and 6 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue