Skip to content

Commit 4c7e0e7

Browse files
committed
update
1 parent b96db7a commit 4c7e0e7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

benchmarks/src/has_single_bit.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
#include <utility.hpp>
99

1010
template <typename T>
11-
static void has_single_bit_if(benchmark::State& state) {
11+
void has_single_bit_if(benchmark::State& state) {
1212
const auto random_v = random_vector<T>(8);
1313
for (auto _ : state) {
1414
benchmark::DoNotOptimize(random_v);
15-
int count_true = 0, count_false = 0;
15+
unsigned count_true = 0;
16+
unsigned count_false = 0;
1617
for (const auto& x : random_v) {
1718
if (std::has_single_bit(x)) {
1819
benchmark::DoNotOptimize(count_true++);
@@ -24,7 +25,7 @@ static void has_single_bit_if(benchmark::State& state) {
2425
}
2526

2627
template <typename T>
27-
static void has_single_bit(benchmark::State& state) {
28+
void has_single_bit(benchmark::State& state) {
2829
const auto random_v = random_vector<T>(8);
2930
assert(random_v.size() % 4 == 0);
3031
for (auto _ : state) {

0 commit comments

Comments
 (0)