chore: update for loop in RingBuffer impl
This commit is contained in:
parent
5f0eb995bd
commit
61a869f0c5
|
@ -365,7 +365,7 @@ pub fn RingBuffer(comptime T: type) type {
|
|||
const count = std.math.min(self.len(), cpy.len);
|
||||
var start: Index = self.read;
|
||||
|
||||
for (cpy) |*v, i| {
|
||||
for (cpy, 0..) |*v, i| {
|
||||
if (i >= count) break;
|
||||
|
||||
v.* = self.buf[self.mask(start)];
|
||||
|
|
Loading…
Reference in New Issue