diff options
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/map.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/map.rs b/src/libstd/map.rs index 5436ea1a803..cd19da61ab6 100644 --- a/src/libstd/map.rs +++ b/src/libstd/map.rs @@ -5,7 +5,7 @@ use io::WriterUtil; use to_str::ToStr; -use managed::Managed; +use mutable::Mut; use send_map::linear::LinearMap; use core::cmp::Eq; @@ -463,7 +463,7 @@ fn hash_from_uints<V: Copy>(items: &[(uint, V)]) -> hashmap<uint, V> { } // XXX Transitional -impl<K: Eq IterBytes Hash Copy, V: Copy> Managed<LinearMap<K, V>>: +impl<K: Eq IterBytes Hash Copy, V: Copy> @Mut<LinearMap<K, V>>: map<K, V> { pure fn size() -> uint { unchecked { |
