From b836bc2a11864922e25c0d8caf993fa39c0852a2 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 23 Aug 2024 16:53:54 -0700 Subject: [PATCH] style --- fixed_wide/src/wide.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixed_wide/src/wide.rs b/fixed_wide/src/wide.rs index bf4c96f..9d050ce 100644 --- a/fixed_wide/src/wide.rs +++ b/fixed_wide/src/wide.rs @@ -22,7 +22,7 @@ impl+std::ops::Shl,FracDst:Unsigned> From f impl PartialEq for Fixed{ fn eq(&self,other:&Self)->bool{ - self.bits==other.bits + self.bits.eq(&other.bits) } } impl Eq for Fixed{}