mirror of
https://github.com/Z3Prover/z3
synced 2026-02-16 05:41:43 +00:00
Revert std::move on returned local variables - prevents copy elision
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
eec9cb7a4b
commit
a9628780b5
6 changed files with 7 additions and 7 deletions
|
|
@ -78,7 +78,7 @@ namespace fpa {
|
|||
conds.push_back(mk_literal(t));
|
||||
}
|
||||
m_converter.m_extra_assertions.reset();
|
||||
return std::move(conds);
|
||||
return conds;
|
||||
}
|
||||
|
||||
sat::check_result solver::check() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue