Skip to content

Commit

Permalink
allow needless range loop
Browse files Browse the repository at this point in the history
  • Loading branch information
jlogan03 committed Nov 13, 2023
1 parent e2fcc6e commit 35f4512
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions interpn/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
//! N-dimensional interpolation methods
#![cfg_attr(not(feature = "std"), no_std)]
// These "needless" range loops are a >10% speedup
#![allow(clippy::needless_range_loop)]

pub mod multilinear_rectilinear;
pub mod multilinear_regular;
Expand Down

0 comments on commit 35f4512

Please sign in to comment.