3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-16 05:41:43 +00:00

Revert std::move on returned local variables - prevents copy elision

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

View file

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