3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-23 08:47:37 +00:00

Remove copies (#8583)

This commit is contained in:
Nuno Lopes 2026-02-11 18:14:36 +00:00 committed by Nikolaj Bjorner
parent f2ad141ddf
commit f6f8beaf78
14 changed files with 38 additions and 51 deletions

View file

@ -239,7 +239,7 @@ void proto_model::cleanup() {
unregister_decl(faux);
}
}
m_aux_decls.swap(found_aux_fs);
m_aux_decls = std::move(found_aux_fs);
}
TRACE(model_bug, model_v2_pp(tout, *this););
}