mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-25 01:01:34 +11:00
remove unused stuff
This commit is contained in:
parent
6e0cbbe9eb
commit
ecd04190fa
|
@ -2,8 +2,8 @@ use core::{
|
||||||
cmp::{Eq, Ord, PartialEq, PartialOrd},
|
cmp::{Eq, Ord, PartialEq, PartialOrd},
|
||||||
fmt::{Debug, Display},
|
fmt::{Debug, Display},
|
||||||
ops::{
|
ops::{
|
||||||
Add, AddAssign, BitAnd, BitOr, Div, DivAssign, Mul, MulAssign, Neg, Not, Rem, RemAssign,
|
Add, AddAssign, BitAnd, Div, DivAssign, Mul, MulAssign, Neg, Not, Rem, RemAssign, Shl, Shr,
|
||||||
Shl, Shr, Sub, SubAssign,
|
Sub, SubAssign,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -40,7 +40,6 @@ pub trait FixedWidthUnsignedInteger:
|
||||||
+ Sub<Output = Self>
|
+ Sub<Output = Self>
|
||||||
+ Not<Output = Self>
|
+ Not<Output = Self>
|
||||||
+ BitAnd<Output = Self>
|
+ BitAnd<Output = Self>
|
||||||
+ BitOr<Output = Self>
|
|
||||||
+ Rem<Output = Self>
|
+ Rem<Output = Self>
|
||||||
+ Div<Output = Self>
|
+ Div<Output = Self>
|
||||||
+ Mul<Output = Self>
|
+ Mul<Output = Self>
|
||||||
|
|
Loading…
Reference in a new issue