Fix a syntax error with the latest rust

This commit is contained in:
Jonathan Reem 2014-06-16 09:59:53 -07:00
parent f64b6b015b
commit eecc4a4b75

View 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 {