diff options
| author | chromatic <chromatic@wgz.org> | 2014-02-02 16:32:52 -0800 |
|---|---|---|
| committer | chromatic <chromatic@wgz.org> | 2014-02-07 09:59:19 -0800 |
| commit | 813886b22ccd0976db03c1bfcbb9738b5b7c41db (patch) | |
| tree | dfcd088cfc04989509241e1f7ece9ca0a50c9059 /src/libstd/local_data.rs | |
| parent | c3ccaacc6c90fc678cbba9c3c0427f0a7dece75c (diff) | |
| download | rust-813886b22ccd0976db03c1bfcbb9738b5b7c41db.tar.gz rust-813886b22ccd0976db03c1bfcbb9738b5b7c41db.zip | |
Removed prelude::* from libstd files.
This replaces the imports from the prelude with the re-exported symbols.
Diffstat (limited to 'src/libstd/local_data.rs')
| -rw-r--r-- | src/libstd/local_data.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/local_data.rs b/src/libstd/local_data.rs index 719cf2450c5..5c3ca07f128 100644 --- a/src/libstd/local_data.rs +++ b/src/libstd/local_data.rs @@ -41,7 +41,9 @@ local_data::get(key_vector, |opt| assert_eq!(*opt.unwrap(), ~[4])); // magic. use cast; -use prelude::*; +use option::{None,Option,Some}; +use vec::{ImmutableVector,MutableVector,OwnedVector}; +use iter::{Iterator}; use rt::task::{Task, LocalStorage}; use util::replace; |
