Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BitFaster.Caching/Lfu/ConcurrentLfu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -615,9 +615,9 @@ private LfuNode<K, V> EvictFromWindow()
return first;
}

private struct EvictIterator
private ref struct EvictIterator
{
private CmSketch<K, DetectAvx2> sketch;
private readonly CmSketch<K, DetectAvx2> sketch;
public LfuNode<K, V> node;
public int freq;

Expand Down