Skip to content

Commit

Permalink
Fix data type in extremes f64 bench
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Dec 25, 2021
1 parent 2127043 commit 1f911a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geo/benches/extremes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn criterion_benchmark(c: &mut Criterion) {
});

c.bench_function("extremes f64", |bencher| {
let norway = geo_test_fixtures::norway_main::<f32>();
let norway = geo_test_fixtures::norway_main::<f64>();
let polygon = Polygon::new(norway, vec![]);

bencher.iter(|| {
Expand Down

0 comments on commit 1f911a4

Please sign in to comment.