From f4254dedcfcfce4000abc91b4860c36d3fb91430 Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Wed, 5 Jan 2022 19:30:38 +0100 Subject: Omit implicit lifetimes --- askama_shared/src/generator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'askama_shared/src/generator.rs') diff --git a/askama_shared/src/generator.rs b/askama_shared/src/generator.rs index ad413ea..8b1fb33 100644 --- a/askama_shared/src/generator.rs +++ b/askama_shared/src/generator.rs @@ -1680,7 +1680,7 @@ impl LocalMeta { // type SetChain<'a, T> = MapChain<'a, T, ()>; #[derive(Debug)] -struct MapChain<'a, K: 'a, V: 'a> +struct MapChain<'a, K, V> where K: cmp::Eq + hash::Hash, { -- cgit