mirror of
https://github.com/Z3Prover/z3
synced 2026-02-16 05:41:43 +00:00
Apply std::move to all remaining push_back/insert with std::make_pair (~100+ files)
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
6bad27a56b
commit
2d9d91c5cc
32 changed files with 68 additions and 68 deletions
|
|
@ -4984,7 +4984,7 @@ void seq_rewriter::elim_condition(expr* elem, expr_ref& cond) {
|
|||
all_ranges = true;
|
||||
unsigned ch = 0, ch2 = 0;
|
||||
svector<std::pair<unsigned, unsigned>> ranges, ranges1;
|
||||
ranges.push_back(std::make_pair(0, u().max_char()));
|
||||
ranges.push_back(std::move(std::make_pair(0, u().max_char())));
|
||||
auto exclude_range = [&](unsigned lower, unsigned upper) {
|
||||
SASSERT(lower <= upper);
|
||||
if (lower == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue