Skip to content

Commit

Permalink
core: Fix files that needed GenericChan/Port from prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
z0w0 committed Feb 11, 2013
1 parent 4f84376 commit 33ae058
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libcore/private.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use cast;
use iter;
use libc;
use option;
use pipes;
use pipes::{GenericChan, GenericPort};
use prelude::*;
use ptr;
use result;
Expand Down
3 changes: 2 additions & 1 deletion src/libcore/private/weak_task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ use option::{Some, None, swap_unwrap};
use private::at_exit::at_exit;
use private::global::global_data_clone_create;
use private::finally::Finally;
use pipes::{Port, Chan, SharedChan, GenericSmartChan, stream};
use pipes::{Port, Chan, SharedChan, GenericChan, GenericPort,
GenericSmartChan, stream};
use task::{Task, task, spawn};
use task::rt::{task_id, get_task_id};
use hashmap::linear::LinearMap;
Expand Down
2 changes: 1 addition & 1 deletion src/libcore/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use io;
use io::ReaderUtil;
use libc;
use libc::{pid_t, c_void, c_int};
use pipes::{stream, SharedChan};
use pipes::{stream, SharedChan, GenericChan, GenericPort};
use option::{Some, None};
use os;
use prelude::*;
Expand Down

0 comments on commit 33ae058

Please sign in to comment.