3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-01 12:58:54 +00:00

replace some copies with moves

This commit is contained in:
Nuno Lopes 2026-02-09 22:45:13 +00:00
parent 73844f9a7f
commit 617c621cc0
8 changed files with 27 additions and 13 deletions

View file

@ -208,7 +208,7 @@ namespace sat {
lits2.insert(*it);
}
}
lits1 = lits3;
lits1 = std::move(lits3);
}
literal_vector& mus::get_core() {