mirror of
https://github.com/Z3Prover/z3
synced 2026-02-14 12:51:48 +00:00
Apply std::move to vector/container return values (5 files)
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
ee7dc9a1cc
commit
d60e94c48e
5 changed files with 6 additions and 6 deletions
|
|
@ -78,7 +78,7 @@ namespace fpa {
|
|||
conds.push_back(mk_literal(t));
|
||||
}
|
||||
m_converter.m_extra_assertions.reset();
|
||||
return conds;
|
||||
return std::move(conds);
|
||||
}
|
||||
|
||||
sat::check_result solver::check() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue