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:
NODA, Kai 2016-02-15 07:34:02 +08:00
parent 0c4d81f9bc
commit e03cea40e8
No known key found for this signature in database
GPG Key ID: D53E75D4C4451FC2
6 changed files with 7 additions and 7 deletions

View File

@ -14,4 +14,4 @@
#![stable(feature = "rust1", since = "1.0.0")]
uint_module! { u16, i16, 16 }
uint_module! { u16, 16 }

View File

@ -14,4 +14,4 @@
#![stable(feature = "rust1", since = "1.0.0")]
uint_module! { u32, i32, 32 }
uint_module! { u32, 32 }

View File

@ -14,4 +14,4 @@
#![stable(feature = "rust1", since = "1.0.0")]
uint_module! { u64, i64, 64 }
uint_module! { u64, 64 }

View File

@ -14,4 +14,4 @@
#![stable(feature = "rust1", since = "1.0.0")]
uint_module! { u8, i8, 8 }
uint_module! { u8, 8 }

View File

@ -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",

View File

@ -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 }