Skip to content

Commit

Permalink
clippy: Suppress manual_range_contains.
Browse files Browse the repository at this point in the history
This requires Rust 1.35, higher than the current MSRV.
  • Loading branch information
waywardmonkeys authored and cuviper committed Aug 22, 2023
1 parent 61df956 commit cf5cc5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/biguint/convert.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// This uses stdlib features higher than the MSRV
#![allow(clippy::manual_range_contains)] // 1.35

use super::{biguint_from_vec, BigUint, ToBigUint};

use super::addition::add2;
Expand Down

0 comments on commit cf5cc5b

Please sign in to comment.