Skip to content

Commit 6957c89

Browse files
authored
Old .NET compatibility
1 parent 37b515c commit 6957c89

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

LimitedDeque.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ private int GetIndex(int index)
144144
return (_start + index) & _mask;
145145
}
146146

147-
public bool IsFull() => Count > _mask;
147+
public bool IsFull()
148+
{
149+
return Count > _mask;
150+
}
148151
}
149-
}
152+
}

0 commit comments

Comments
 (0)