mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 16:31:55 +00:00
remove calls to removed def constructor
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a703cf81b1
commit
b27a2aa7fc
7 changed files with 10 additions and 13 deletions
|
@ -2472,7 +2472,7 @@ namespace qe {
|
|||
for_each_expr(p, fml);
|
||||
return false;
|
||||
}
|
||||
catch (found) {
|
||||
catch (found const&) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -487,7 +487,7 @@ public:
|
|||
val = model(var);
|
||||
sub.insert(var, val);
|
||||
if (defs)
|
||||
defs->push_back(mbp::def(expr_ref(var, m), val));
|
||||
defs->push_back({expr_ref(var, m), val});
|
||||
unsigned j = 0;
|
||||
for (expr* f : fmls) {
|
||||
sub(f, tmp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue