3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

add obj_ref::operator=(obj_ref &&) + a few explicit uses

This commit is contained in:
Nuno Lopes 2018-06-26 17:00:56 +01:00
parent ea4218a192
commit 2b31024dab
5 changed files with 14 additions and 5 deletions

View file

@ -2297,14 +2297,14 @@ public:
vars.resize(j);
}
else {
fml = tmp;
fml = std::move(tmp);
}
}
void operator()(expr_ref& fml, proof_ref& pr) {
expr_ref tmp(m);
m_elim_star(fml, tmp, pr);
fml = tmp;
fml = std::move(tmp);
}
void operator()(uint_set const& index_set, bool index_of_bound, expr_ref& fml) {