diff options
| author | bors <bors@rust-lang.org> | 2013-07-14 00:49:29 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-14 00:49:29 -0700 |
| commit | 0ef837519d6cac6ccf1bd984b0e7b7ab2b105d47 (patch) | |
| tree | 82baaadd5be9d662e1c5227478f99ea5e12f1717 /src/libstd/task | |
| parent | 247ad4515de0d2e32168eff780561bc3970a3f41 (diff) | |
| parent | 0e882f2bbda58e8271ff25c1467a35fc3ff26dd4 (diff) | |
| download | rust-0ef837519d6cac6ccf1bd984b0e7b7ab2b105d47.tar.gz rust-0ef837519d6cac6ccf1bd984b0e7b7ab2b105d47.zip | |
auto merge of #7768 : sfackler/rust/containers, r=huonw
See #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.rs | 2 |
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}; |
