about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2013-07-13 19:44:36 -0700
committerSteven Fackler <sfackler@gmail.com>2013-07-13 19:44:36 -0700
commit6b37b5bab74a87c4f05274e6a49d9e28a4c0f4e1 (patch)
tree1a92b4e674126ff3bf2a9e6204a25a2ae30071b4 /src/libstd/task
parent8d0feb58e7f5ae67546db9c3cd7fdf4ab792d839 (diff)
downloadrust-6b37b5bab74a87c4f05274e6a49d9e28a4c0f4e1.tar.gz
rust-6b37b5bab74a87c4f05274e6a49d9e28a4c0f4e1.zip
Split mutable methods out of Set and Map
Fixes most of #4989. I didn't add Persistent{Set,Map} since the only
persistent data structure is fun_treemap and its functionality is
currently too limited to build a trait out of.
Diffstat (limited to 'src/libstd/task')
-rw-r--r--src/libstd/task/spawn.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/task/spawn.rs b/src/libstd/task/spawn.rs
index f45d470a9f6..27cb1c2c100 100644
--- a/src/libstd/task/spawn.rs
+++ b/src/libstd/task/spawn.rs
@@ -77,7 +77,7 @@ use prelude::*;
 use cast::transmute;
 use cast;
 use cell::Cell;
-use container::Map;
+use container::MutableMap;
 use comm::{Chan, GenericChan};
 use hashmap::HashSet;
 use task::local_data_priv::{local_get, local_set, OldHandle};