3
0
Fork 0
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:
copilot-swe-agent[bot] 2026-02-11 21:41:34 +00:00
parent d88c766479
commit 6bad27a56b
8 changed files with 10 additions and 10 deletions

View file

@ -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;
}