mirror of
https://github.com/Z3Prover/z3
synced 2026-02-15 05:11:49 +00:00
Remove copies (#8583)
This commit is contained in:
parent
0da28c6d19
commit
836a76c78a
14 changed files with 38 additions and 51 deletions
|
|
@ -358,7 +358,7 @@ namespace arith {
|
|||
continue;
|
||||
m_ineqs_that_are_eqs.insert(j);
|
||||
if (j < orig_size) {
|
||||
m_eqs.push_back(m_ineqs[j]);
|
||||
m_eqs.push_back(std::move(m_ineqs[j]));
|
||||
}
|
||||
else {
|
||||
auto [a, b] = m_deps[j];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue