Skip to content

Commit 20d80c5

Browse files
committed
---
yaml --- r: 207703 b: refs/heads/tmp c: cf11c26 h: refs/heads/master i: 207701: 31b179a 207699: 994f4cb 207695: 4ce861f v: v3
1 parent 77c88a2 commit 20d80c5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3232
refs/heads/beta: cd7d89af9169885642d43597302af69f842bbd78
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35-
refs/heads/tmp: 3241b487fdcacf26ef7056e1a51d5220f66eafc2
35+
refs/heads/tmp: cf11c261f0a1293a71ab0d579f4047525dbf8cef
3636
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3737
refs/tags/homu-tmp: 704c2ee730d2e948d11a2edd77e3f35de8329a6e
3838
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412

branches/tmp/src/libcore/num/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,9 +1362,9 @@ pub trait Float {
13621362
}
13631363

13641364
macro_rules! from_str_float_impl {
1365-
($T:ident) => {
1365+
($t:ty) => {
13661366
#[stable(feature = "rust1", since = "1.0.0")]
1367-
impl FromStr for $T {
1367+
impl FromStr for $t {
13681368
type Err = ParseFloatError;
13691369

13701370
/// Converts a string in base 10 to a float.
@@ -1405,10 +1405,10 @@ from_str_float_impl!(f32);
14051405
from_str_float_impl!(f64);
14061406

14071407
macro_rules! from_str_radix_int_impl {
1408-
($($T:ident)*) => {$(
1408+
($($t:ty)*) => {$(
14091409
#[stable(feature = "rust1", since = "1.0.0")]
14101410
#[allow(deprecated)]
1411-
impl FromStr for $T {
1411+
impl FromStr for $t {
14121412
type Err = ParseIntError;
14131413
fn from_str(src: &str) -> Result<Self, ParseIntError> {
14141414
from_str_radix(src, 10)
@@ -1428,7 +1428,7 @@ trait FromStrRadixHelper: PartialOrd + Copy {
14281428
}
14291429

14301430
macro_rules! doit {
1431-
($($t:ident)*) => ($(impl FromStrRadixHelper for $t {
1431+
($($t:ty)*) => ($(impl FromStrRadixHelper for $t {
14321432
fn min_value() -> Self { Self::min_value() }
14331433
fn from_u32(u: u32) -> Self { u as Self }
14341434
fn checked_mul(&self, other: u32) -> Option<Self> {

0 commit comments

Comments
 (0)