Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Aug 6, 2023
1 parent f7713d8 commit 5a14145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/timestamp-queries/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ impl QueryResults {
let mut encoder_timestamps = [0, 0];
encoder_timestamps[0] = get_next_slot();
let render_start_end_timestamps = [get_next_slot(), get_next_slot()];
let render_inside_timestamp = timestamps_inside_passes.then(|| get_next_slot());
let render_inside_timestamp = timestamps_inside_passes.then(get_next_slot);
let compute_start_end_timestamps = [get_next_slot(), get_next_slot()];
let compute_inside_timestamp = timestamps_inside_passes.then(|| get_next_slot());
let compute_inside_timestamp = timestamps_inside_passes.then(get_next_slot);
encoder_timestamps[1] = get_next_slot();

QueryResults {
Expand Down

0 comments on commit 5a14145

Please sign in to comment.