Skip to content

Commit 441c96b

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 191328 b: refs/heads/try c: b2f3755 h: refs/heads/master v: v3
1 parent fb3ef19 commit 441c96b

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 809a554fca2d0ebc2ba50077016fe282a4064752
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c64d671671aea2e44ee7fc6eb00ee75fc30ed7b9
5-
refs/heads/try: 85707398809f8b56afc471f228bd4d0137ce0a32
5+
refs/heads/try: b2f37554bf9f2b55fa6ba6ba8e8eaf1826301b4e
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/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/try/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/try/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/try/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/try/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/try/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)