Quiet some new clippy warnings

This commit is contained in:
2019-11-29 13:07:09 +01:00
parent 067e5882a9
commit bdbe025b93

View File

@@ -12,7 +12,7 @@ type Cell<T> = Vec<T>;
struct CellDictionary<K, V> {
table: Vec<Cell<V>>,
max_offset: usize,
_marker: marker::PhantomData<(K)>,
_marker: marker::PhantomData<K>,
}
impl<K, V> CellDictionary<K, V>