Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dyphire authored May 14, 2021
1 parent 874f02d commit 1e0917e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alass-core/src/alass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl Aligner {
fn accum(d: &mut [RatingDeltaDelta], idx: TimeDelta, x: RatingDeltaDelta, sigma_min: TimeDelta) {
let idx: usize = (idx - sigma_min).as_i64().try_into().unwrap();
d[idx] = d[idx] + x;
};
}

accum(
&mut deltas,
Expand Down

0 comments on commit 1e0917e

Please sign in to comment.