mirror of
https://github.com/Z3Prover/z3
synced 2026-02-15 05:11:49 +00:00
Add std::move for std::make_pair in 8 more files (insert and push_back)
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
d88c766479
commit
6bad27a56b
8 changed files with 10 additions and 10 deletions
|
|
@ -1210,7 +1210,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
m_diseq_watch.reserve(watch_var+1);
|
||||
m_diseq_watch[watch_var].push_back(std::make_pair(v1, v2));
|
||||
m_diseq_watch[watch_var].push_back(std::move(std::make_pair(v1, v2)));
|
||||
m_diseq_watch_trail.push_back(watch_var);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue