From bdbe025b934eb5d3396bef98e678e4e735b87cf2 Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Fri, 29 Nov 2019 13:07:09 +0100 Subject: [PATCH] Quiet some new clippy warnings --- src/cell_space.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cell_space.rs b/src/cell_space.rs index 40efaee..dbf3994 100644 --- a/src/cell_space.rs +++ b/src/cell_space.rs @@ -12,7 +12,7 @@ type Cell = Vec; struct CellDictionary { table: Vec>, max_offset: usize, - _marker: marker::PhantomData<(K)>, + _marker: marker::PhantomData, } impl CellDictionary