From a923a6b5d1778d8386c7cba4a29575c53d807e61 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Wed, 28 Aug 2024 12:23:13 -0700 Subject: [PATCH] consistency --- fixed_wide/src/fixed.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fixed_wide/src/fixed.rs b/fixed_wide/src/fixed.rs index 47ae1a9..fd49ace 100644 --- a/fixed_wide/src/fixed.rs +++ b/fixed_wide/src/fixed.rs @@ -16,13 +16,13 @@ impl Fixed{ pub const MIN:Self=Self{bits:BInt::::MIN,frac:PhantomData}; } -impl From for Fixed +impl From for Fixed where BInt:From { fn from(value:T)->Self{ Self{ - bits:BInt::<{CHUNKS}>::from(value)<::from(value)<