Skip to content

Commit c85a87c

Browse files
committed
clean up
1 parent 960a4be commit c85a87c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

benchmark/update_mm_d_benchmark.cc

+2-5
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ typename std::enable_if<
166166
UpdateEntry(TestMap<SCENARIO, DIM>& tree, std::vector<UpdateOp<DIM>>& updates) {
167167
size_t n = 0;
168168
for (auto& update : updates) {
169-
n += tree.relocate(update.old_, update.new_, update.id_, false);
169+
n += tree.relocate(update.old_, update.new_, update.id_);
170170
}
171171
return n;
172172
}
@@ -177,10 +177,7 @@ typename std::enable_if<SCENARIO == Scenario::MM_SET_RELOCATE_IF, size_t>::type
177177
size_t n = 0;
178178
for (auto& update : updates) {
179179
n += tree.relocate_if(
180-
update.old_,
181-
update.new_,
182-
[&update](const payload_t& v) { return v == update.id_; },
183-
false);
180+
update.old_, update.new_, [&update](const payload_t& v) { return v == update.id_; });
184181
}
185182
return n;
186183
}

0 commit comments

Comments
 (0)