Update to uluru 0.2 and arrayvec 0.4

This commit is contained in:
Matt Brubeck 2017-12-07 09:30:06 -08:00
parent 8e3056d0cc
commit 99c2db0549
7 changed files with 24 additions and 38 deletions

View file

@ -515,7 +515,7 @@ pub struct SelectorFlagsMap<E: TElement> {
map: FnvHashMap<SendElement<E>, ElementSelectorFlags>,
/// An LRU cache to avoid hashmap lookups, which can be slow if the map
/// gets big.
cache: LRUCache<CacheItem<E>, [Entry<CacheItem<E>>; 4 + 1]>,
cache: LRUCache<[Entry<CacheItem<E>>; 4 + 1]>,
}
#[cfg(debug_assertions)]