3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-14 12:51:48 +00:00

Apply std::move to vector/container return values (5 files)

Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-12 09:19:32 +00:00
parent ee7dc9a1cc
commit d60e94c48e
5 changed files with 6 additions and 6 deletions

View file

@ -78,7 +78,7 @@ namespace fpa {
conds.push_back(mk_literal(t));
}
m_converter.m_extra_assertions.reset();
return conds;
return std::move(conds);
}
sat::check_result solver::check() {