Skip to content

Commit

Permalink
Disable clippy::needless_range_loop warning
Browse files Browse the repository at this point in the history
  • Loading branch information
SallySoul committed Dec 20, 2024
1 parent 1d5f5fe commit 0f693f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Used for Stencil traits
#![feature(trait_alias)]
// We use these alot with const ranges,
// don't like this warning for this codebase.
#![allow(clippy::needless_range_loop)]

pub mod decomposition;
pub mod domain;
Expand Down

0 comments on commit 0f693f5

Please sign in to comment.