Skip to content

Commit

Permalink
remove outdated clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
preston-evans98 authored and ma2bd committed Oct 7, 2023
1 parent daea899 commit 2a48eb1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ impl<'de> Deserializer<'de> {
Ok(u128::from_le_bytes(le_bytes))
}

#[allow(clippy::integer_arithmetic)]
fn parse_u32_from_uleb128(&mut self) -> Result<u32> {
let mut value: u64 = 0;
for shift in (0..32).step_by(7) {
Expand Down

0 comments on commit 2a48eb1

Please sign in to comment.