diff --git a/src/utils/sqrt.rs b/src/utils/sqrt.rs index 2046044..da3670e 100644 --- a/src/utils/sqrt.rs +++ b/src/utils/sqrt.rs @@ -7,6 +7,8 @@ use crate::prelude::*; /// * `value`: the value for which to compute the square root, rounded down /// /// returns: BigInt + +#[allow(clippy::assigning_clones)] pub fn sqrt(value: &BigInt) -> Result { if !value >= Zero::zero() { return Err(Error::Incorrect());