Fixed new syntax error caused by upstream rust changes.
authorJonathan Reem <jonathan.reem@gmail.com>
committerJonathan Reem <jonathan.reem@gmail.com>
src/lib.rs

index 01297b8c8e8dba517764fe670ff615475b0e6fe5..1202332a284afbbd9a221c8ee7ea12277888231c 100644 (file)
@@ -135,7 +135,7 @@ impl AnyMap {
     /// Set the value contained in the map for the type `T`.
     /// This will override any previous value stored.
     pub fn insert<T: 'static>(&mut self, value: T) {
-        self.data.insert(TypeId::of::<T>(), box value as Box<Any>:'static);
+        self.data.insert(TypeId::of::<T>(), box value as Box<Any>);
     }
 
     /// Remove the value for the type `T` if it existed.