summaryrefslogtreecommitdiffstats
path: root/vendor/elliptic-curve/src/dev.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/elliptic-curve/src/dev.rs')
-rw-r--r--vendor/elliptic-curve/src/dev.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/elliptic-curve/src/dev.rs b/vendor/elliptic-curve/src/dev.rs
index 36c684ad4..a2659f1b8 100644
--- a/vendor/elliptic-curve/src/dev.rs
+++ b/vendor/elliptic-curve/src/dev.rs
@@ -335,7 +335,6 @@ impl Invert for Scalar {
impl Reduce<U256> for Scalar {
type Bytes = FieldBytes;
- #[allow(clippy::integer_arithmetic)]
fn reduce(w: U256) -> Self {
let (r, underflow) = w.sbb(&MockCurve::ORDER, Limb::ZERO);
let underflow = Choice::from((underflow.0 >> (Limb::BITS - 1)) as u8);