Skip to content

Commit

Permalink
allow clippy::needless_range_loop
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jan 29, 2021
1 parent 9549068 commit 59bf09a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions groestl/src/compress1024.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::needless_range_loop)]
use super::LongBlock;
use crate::table::TABLE;
use core::{convert::TryInto, u64};
Expand Down
1 change: 1 addition & 0 deletions groestl/src/compress512.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::needless_range_loop)]
use super::ShortBlock;
use crate::table::TABLE;
use core::{convert::TryInto, u64};
Expand Down

0 comments on commit 59bf09a

Please sign in to comment.