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