File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
15
15
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
16
17
- uint_module ! { u16 , i16 , 16 }
17
+ uint_module ! { u16 , 16 }
Original file line number Diff line number Diff line change 14
14
15
15
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
16
17
- uint_module ! { u32 , i32 , 32 }
17
+ uint_module ! { u32 , 32 }
Original file line number Diff line number Diff line change 14
14
15
15
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
16
17
- uint_module ! { u64 , i64 , 64 }
17
+ uint_module ! { u64 , 64 }
Original file line number Diff line number Diff line change 14
14
15
15
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
16
17
- uint_module ! { u8 , i8 , 8 }
17
+ uint_module ! { u8 , 8 }
Original file line number Diff line number Diff line change 10
10
11
11
#![ doc( hidden) ]
12
12
13
- macro_rules! uint_module { ( $T: ty, $T_SIGNED : ty , $ bits: expr) => (
13
+ macro_rules! uint_module { ( $T: ty, $bits: expr) => (
14
14
15
15
#[ unstable( feature = "num_bits_bytes" ,
16
16
reason = "may want to be an associated function" ,
Original file line number Diff line number Diff line change 15
15
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
16
17
17
#[ cfg( target_pointer_width = "32" ) ]
18
- uint_module ! { usize , isize , 32 }
18
+ uint_module ! { usize , 32 }
19
19
#[ cfg( target_pointer_width = "64" ) ]
20
- uint_module ! { usize , isize , 64 }
20
+ uint_module ! { usize , 64 }
You can’t perform that action at this time.
0 commit comments