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

Apply std::move to obj_map return in opt_preprocess.cpp

Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-12 09:21:03 +00:00
parent d60e94c48e
commit eec9cb7a4b

View file

@ -146,7 +146,7 @@ namespace opt {
for (expr* f : fmls)
fmls[i++] = mk_not(m, f);
return new_soft;
return std::move(new_soft);
}
bool preprocess::find_mutexes(vector<soft>& softs, rational& lower) {