diff --git a/src/conversions.rs b/src/conversions.rs index f6325bc..ef879b1 100644 --- a/src/conversions.rs +++ b/src/conversions.rs @@ -1,5 +1,5 @@ -use core::ops::Add; use crate::{OutXHigh, OutXLow, OutYHigh, OutYLow, OutZHigh, OutZLow}; +use core::ops::Add; impl Add for OutXLow { type Output = i16; @@ -47,4 +47,4 @@ impl Add for OutZHigh { fn add(self, lo: OutZLow) -> Self::Output { lo.add(self) } -} \ No newline at end of file +}