Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Sep 28, 2022
1 parent 998d214 commit 2c2351e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benches/sources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ fn table_source(c: &mut Criterion) {
fn composite_source(c: &mut Criterion) {
c.bench_function("get_composite_source", |b| b.iter(get_composite_source));
c.bench_function("get_composite_source_tile", |b| {
b.iter(get_composite_source_tile);
b.iter(get_composite_source_tile)
});
}

fn function_source(c: &mut Criterion) {
c.bench_function("get_function_source", |b| b.iter(get_function_source));
c.bench_function("get_function_source_tile", |b| {
b.iter(get_function_source_tile);
b.iter(get_function_source_tile)
});
}

Expand Down

0 comments on commit 2c2351e

Please sign in to comment.