File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1414
1515#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1616
17- uint_module ! { u16 , i16 , 16 }
17+ uint_module ! { u16 , 16 }
Original file line number Diff line number Diff line change 1414
1515#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1616
17- uint_module ! { u32 , i32 , 32 }
17+ uint_module ! { u32 , 32 }
Original file line number Diff line number Diff line change 1414
1515#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1616
17- uint_module ! { u64 , i64 , 64 }
17+ uint_module ! { u64 , 64 }
Original file line number Diff line number Diff line change 1414
1515#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1616
17- uint_module ! { u8 , i8 , 8 }
17+ uint_module ! { u8 , 8 }
Original file line number Diff line number Diff line change 1010
1111#![ doc( hidden) ]
1212
13- macro_rules! uint_module { ( $T: ty, $T_SIGNED : ty , $ bits: expr) => (
13+ macro_rules! uint_module { ( $T: ty, $bits: expr) => (
1414
1515#[ unstable( feature = "num_bits_bytes" ,
1616 reason = "may want to be an associated function" ,
Original file line number Diff line number Diff line change 1515#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1616
1717#[ cfg( target_pointer_width = "32" ) ]
18- uint_module ! { usize , isize , 32 }
18+ uint_module ! { usize , 32 }
1919#[ 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