File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
#include < utility.hpp>
9
9
10
10
template <typename T>
11
- static void has_single_bit_if (benchmark::State& state) {
11
+ void has_single_bit_if (benchmark::State& state) {
12
12
const auto random_v = random_vector<T>(8 );
13
13
for (auto _ : state) {
14
14
benchmark::DoNotOptimize (random_v);
15
- int count_true = 0 , count_false = 0 ;
15
+ unsigned count_true = 0 ;
16
+ unsigned count_false = 0 ;
16
17
for (const auto & x : random_v) {
17
18
if (std::has_single_bit (x)) {
18
19
benchmark::DoNotOptimize (count_true++);
@@ -24,7 +25,7 @@ static void has_single_bit_if(benchmark::State& state) {
24
25
}
25
26
26
27
template <typename T>
27
- static void has_single_bit (benchmark::State& state) {
28
+ void has_single_bit (benchmark::State& state) {
28
29
const auto random_v = random_vector<T>(8 );
29
30
assert (random_v.size () % 4 == 0 );
30
31
for (auto _ : state) {
You can’t perform that action at this time.
0 commit comments