From: Jonathan Reem Date: Mon, 16 Jun 2014 16:59:53 +0000 (-0700) Subject: Fix a syntax error with the latest rust X-Git-Tag: 0.9.1~21^2 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/eecc4a4b758ae743486cfe4254cefd136f829391 Fix a syntax error with the latest rust --- diff --git a/src/lib.rs b/src/lib.rs index d0bce3c..8be503e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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:'static, TypeIdHasher>, + data: HashMap, TypeIdHasher>, } impl AnyMap {