Skip to content

Commit 1c487b1

Browse files
committed
auto merge of #4867 : z0w0/rust/pruneprelude, r=catamorphism
2 parents 1d82d8d + 33ae058 commit 1c487b1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/libcore/prelude.rs

-1
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;

src/libcore/private.rs

+1-1
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;

src/libcore/private/weak_task.rs

+2-1
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;

src/libcore/run.rs

+1-1
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)