3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-14 21:01:49 +00:00

Apply std::move to 6 more expr_ref/app_ref variables in smt/ (batch 2)

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

View file

@ -589,7 +589,7 @@ namespace smt {
app_ref lam_name(m.mk_fresh_const("lambda", q->get_sort()), m);
app_ref eq(m), lam_app(m);
expr_ref_vector vars(m);
vars.push_back(lam_name);
vars.push_back(std::move(lam_name));
unsigned sz = q->get_num_decls();
for (unsigned i = 0; i < sz; ++i)
vars.push_back(m.mk_var(sz - i - 1, q->get_decl_sort(i)));