Skip to content

Commit 2e11cd2

Browse files
committed
Fix the type of distr_f type in the patterns benchmark
1 parent 85f0a8d commit 2e11cd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/patterns/bench.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ using value_t = double;
4545
using collection_t = std::vector<value_t>;
4646

4747
// Handy function pointer aliases
48-
using distr_f = void (*)(std::back_insert_iterator<collection_t>, std::size_t);
48+
using distr_f = void (*)(std::back_insert_iterator<collection_t>, long long int);
4949
using sort_f = void (*)(collection_t&);
5050

5151
int main()

0 commit comments

Comments
 (0)