Skip to content

Commit 219ee16

Browse files
committed
---
yaml --- r: 44391 b: refs/heads/master c: 1c487b1 h: refs/heads/master i: 44389: 02a5493 44387: 579fc3c 44383: 50f6e0b v: v3
1 parent cb12105 commit 219ee16

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 1d82d8dd5def0713a78f864f47a4c9a65f8bf6cc
2+
refs/heads/master: 1c487b18f3ff2ea55e377c3e8be99227c8257136
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d9689399d091c3265f00434a69c551a61c28dc
55
refs/heads/try: ef355f6332f83371e4acf04fc4eb940ab41d78d3

trunk/src/libcore/prelude.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ pub use path::GenericPath;
3434
pub use path::Path;
3535
pub use path::PosixPath;
3636
pub use path::WindowsPath;
37-
pub use pipes::{GenericChan, GenericPort};
3837
pub use ptr::Ptr;
3938
pub use str::{StrSlice, Trimmable, OwnedStr};
4039
pub use to_bytes::IterBytes;

trunk/src/libcore/private.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use cast;
1414
use iter;
1515
use libc;
1616
use option;
17-
use pipes;
17+
use pipes::{GenericChan, GenericPort};
1818
use prelude::*;
1919
use ptr;
2020
use result;

trunk/src/libcore/private/weak_task.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ use option::{Some, None, swap_unwrap};
2222
use private::at_exit::at_exit;
2323
use private::global::global_data_clone_create;
2424
use private::finally::Finally;
25-
use pipes::{Port, Chan, SharedChan, GenericSmartChan, stream};
25+
use pipes::{Port, Chan, SharedChan, GenericChan, GenericPort,
26+
GenericSmartChan, stream};
2627
use task::{Task, task, spawn};
2728
use task::rt::{task_id, get_task_id};
2829
use hashmap::linear::LinearMap;

trunk/src/libcore/run.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use io;
1414
use io::ReaderUtil;
1515
use libc;
1616
use libc::{pid_t, c_void, c_int};
17-
use pipes::{stream, SharedChan};
17+
use pipes::{stream, SharedChan, GenericChan, GenericPort};
1818
use option::{Some, None};
1919
use os;
2020
use prelude::*;

0 commit comments

Comments
 (0)