]> git.lizzy.rs Git - rust.git/blobdiff - src/bootstrap/cache.rs
Simplify Cache wrapper to single type, impl Deref on it, fix all compilation errors...
[rust.git] / src / bootstrap / cache.rs
index 53071df855297e30f17598f8dd03d159f412a151..4310f2c6fa1405902c8ee04fdf068be18dda8226 100644 (file)
@@ -161,7 +161,7 @@ fn cmp(&self, other: &Self) -> Ordering {
     }
 }
 
-struct TyIntern<T: Hash + Clone + Eq> {
+struct TyIntern<T: Clone + Eq> {
     items: Vec<T>,
     set: HashMap<T, Interned<T>>,
 }