3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-04 23:55:44 -07:00
parent 8118292def
commit eacde16b3e
5 changed files with 14 additions and 14 deletions

View file

@ -38,8 +38,8 @@ public:
}
void operator()(model_ref & md) override {
model * new_model = alloc(model, m);
convert(md.get(), new_model);
model_ref new_model = alloc(model, m);
convert(md.get(), new_model.get());
md = new_model;
}