about summary refs log tree commit diff
path: root/src/libstd/local_data.rs
diff options
context:
space:
mode:
authorchromatic <chromatic@wgz.org>2014-02-02 16:32:52 -0800
committerchromatic <chromatic@wgz.org>2014-02-07 09:59:19 -0800
commit813886b22ccd0976db03c1bfcbb9738b5b7c41db (patch)
treedfcd088cfc04989509241e1f7ece9ca0a50c9059 /src/libstd/local_data.rs
parentc3ccaacc6c90fc678cbba9c3c0427f0a7dece75c (diff)
downloadrust-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.rs4
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;