libcore/num: Remove unused macro argument.
It is no longer necessary after dd0d495f50
Signed-off-by: NODA, Kai <nodakai@gmail.com>
This commit is contained in:
parent
0c4d81f9bc
commit
e03cea40e8
@ -14,4 +14,4 @@
|
||||
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
||||
uint_module! { u16, i16, 16 }
|
||||
uint_module! { u16, 16 }
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
||||
uint_module! { u32, i32, 32 }
|
||||
uint_module! { u32, 32 }
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
||||
uint_module! { u64, i64, 64 }
|
||||
uint_module! { u64, 64 }
|
||||
|
@ -14,4 +14,4 @@
|
||||
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
||||
uint_module! { u8, i8, 8 }
|
||||
uint_module! { u8, 8 }
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
#![doc(hidden)]
|
||||
|
||||
macro_rules! uint_module { ($T:ty, $T_SIGNED:ty, $bits:expr) => (
|
||||
macro_rules! uint_module { ($T:ty, $bits:expr) => (
|
||||
|
||||
#[unstable(feature = "num_bits_bytes",
|
||||
reason = "may want to be an associated function",
|
||||
|
@ -15,6 +15,6 @@
|
||||
#![stable(feature = "rust1", since = "1.0.0")]
|
||||
|
||||
#[cfg(target_pointer_width = "32")]
|
||||
uint_module! { usize, isize, 32 }
|
||||
uint_module! { usize, 32 }
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
uint_module! { usize, isize, 64 }
|
||||
uint_module! { usize, 64 }
|
||||
|
Loading…
Reference in New Issue
Block a user