Skip to content

Commit

Permalink
Reorder “use” as desired by “cargo fmt”
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris00 committed Feb 7, 2022
1 parent bce8817 commit 3df1c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arith.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{classify::*, interval::*, simd::*};
use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign};
use forward_ref::*;
use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign};

impl Neg for Interval {
type Output = Self;
Expand Down

0 comments on commit 3df1c2d

Please sign in to comment.