From: Jonathan Reem Date: Sat, 14 Jun 2014 22:27:06 +0000 (-0700) Subject: Fixed new syntax error caused by upstream rust changes. X-Git-Tag: 0.9.1~22^2~1 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/56113c63b028e7d215f1c16cf90d9c5d902df477 Fixed new syntax error caused by upstream rust changes. --- diff --git a/src/lib.rs b/src/lib.rs index 01297b8..1202332 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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(&mut self, value: T) { - self.data.insert(TypeId::of::(), box value as Box:'static); + self.data.insert(TypeId::of::(), box value as Box); } /// Remove the value for the type `T` if it existed.