Showing
1 changed file
with
2 additions
and
2 deletions
@@ -23,10 +23,10 @@ | @@ -23,10 +23,10 @@ | ||
23 | // along with this program. If not, see <http://www.gnu.org/licenses/>. | 23 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
24 | // | 24 | // |
25 | use std::cmp::Ordering; | 25 | use std::cmp::Ordering; |
26 | -use std::ops::{Add,Sub,Neg,Mul,Div}; | ||
27 | -use std::fmt; | ||
28 | use std::convert::{TryFrom, TryInto}; | 26 | use std::convert::{TryFrom, TryInto}; |
27 | +use std::fmt; | ||
29 | use std::num::TryFromIntError; | 28 | use std::num::TryFromIntError; |
29 | +use std::ops::{Add,Sub,Neg,Mul,Div}; | ||
30 | 30 | ||
31 | #[derive(Debug, Eq, Clone, Copy)] | 31 | #[derive(Debug, Eq, Clone, Copy)] |
32 | pub struct Fractional (pub i64, pub i64); | 32 | pub struct Fractional (pub i64, pub i64); |
Please
register
or
login
to post a comment