mirror of
https://github.com/Z3Prover/z3
synced 2026-02-15 05:11:49 +00:00
Apply std::move to all remaining push_back/insert with std::make_pair (~100+ files)
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
6bad27a56b
commit
2d9d91c5cc
32 changed files with 68 additions and 68 deletions
|
|
@ -521,7 +521,7 @@ namespace q {
|
|||
unsigned i = 0;
|
||||
for (expr* arg : *to_app(s)) {
|
||||
if (!is_ground(arg) && !is_uninterp(arg) && !qb.is_free(arg))
|
||||
qb.var_args.push_back(std::make_pair(to_app(s), i));
|
||||
qb.var_args.push_back(std::move(std::make_pair(to_app(s), i)));
|
||||
++i;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue