Skip to content

Commit be93244

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 193827 b: refs/heads/beta c: b2f3755 h: refs/heads/master i: 193825: 0616b90 193823: 07029ac v: v3
1 parent 05d8c66 commit be93244

File tree

10 files changed

+382
-2
lines changed

10 files changed

+382
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: 85707398809f8b56afc471f228bd4d0137ce0a32
34+
refs/heads/beta: b2f37554bf9f2b55fa6ba6ba8e8eaf1826301b4e
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: de8a23bbc3a7b9cbd7574b5b91a34af59bf030e6

branches/beta/src/libcollections/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ mod prelude {
166166

167167
// from other crates.
168168
pub use alloc::boxed::Box;
169-
pub use unicode::char::CharExt;
170169

171170
// from collections.
172171
pub use borrow::IntoCow;

branches/beta/src/libstd/num/strconv.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ use self::ExponentFormat::*;
1616
use self::SignificantDigits::*;
1717
use self::SignFormat::*;
1818

19+
#[cfg(stage0)]
1920
use char::{self, CharExt};
21+
#[cfg(not(stage0))]
22+
use char;
2023
use num::{self, Int, Float, ToPrimitive};
2124
use num::FpCategory as Fp;
2225
use ops::FnMut;

branches/beta/src/libstd/old_io/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ pub use self::FileMode::*;
251251
pub use self::FileAccess::*;
252252
pub use self::IoErrorKind::*;
253253

254+
#[cfg(stage0)]
254255
use char::CharExt;
255256
use default::Default;
256257
use error::Error;

branches/beta/src/libstd/old_path/windows.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use self::PathPrefix::*;
1616

1717
use ascii::AsciiExt;
18+
#[cfg(stage0)]
1819
use char::CharExt;
1920
use clone::Clone;
2021
use cmp::{Ordering, Eq, Ord, PartialEq, PartialOrd};

branches/beta/src/libstd/path.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ mod platform {
159159
use core::prelude::*;
160160
use ascii::*;
161161

162+
#[cfg(stage0)]
162163
use char::CharExt as UnicodeCharExt;
163164
use super::{os_str_as_u8_slice, u8_slice_as_os_str, Prefix};
164165
use ffi::OsStr;

branches/beta/src/libstd/prelude/v1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
// Reexported types and traits
2626
#[stable(feature = "rust1", since = "1.0.0")]
2727
#[doc(no_inline)] pub use boxed::Box;
28+
#[cfg(stage0)]
2829
#[stable(feature = "rust1", since = "1.0.0")]
2930
#[doc(no_inline)] pub use char::CharExt;
3031
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)