Fix a syntax error with the latest rust
authorJonathan Reem <jonathan.reem@gmail.com>
committerJonathan Reem <jonathan.reem@gmail.com>
src/lib.rs

index d0bce3c4ec02962e204261d4c6ee6c0140fb1456..8be503e0e16b54d26ef4649ac3bf1c6871b2b3ca 100644 (file)
@@ -109,7 +109,7 @@ impl<'a> UncheckedAnyMutRefExt<'a> for &'a mut Any {
 ///
 /// Values containing non-static references are not permitted.
 pub struct AnyMap {
-    data: HashMap<TypeId, Box<Any>:'static, TypeIdHasher>,
+    data: HashMap<TypeId, Box<Any>, TypeIdHasher>,
 }
 
 impl AnyMap {