Skip to content

Commit

Permalink
minor: fix 32-bit warning in benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Dec 29, 2023
1 parent 4c92f3a commit 812ac06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/msg-multicast/bmm-benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void benchmark(Accumulator (*factory)(std::minstd_rand&), picobench::state& pb)
for (auto& a : vec) {
sum += a.accumulate(rng() % 10);
}
pb.set_result(sum);
pb.set_result(uintptr_t(sum));
}

void virt(picobench::state& pb) {
Expand Down

0 comments on commit 812ac06

Please sign in to comment.