fix(RingBuffer): remove restrictive memset
This commit is contained in:
parent
322c798e38
commit
14ea006f4f
|
@ -200,8 +200,6 @@ pub fn RingBuffer(comptime T: type) type {
|
||||||
std.debug.assert(std.math.isPowerOfTwo(buf.len)); // capacity must be a power of two
|
std.debug.assert(std.math.isPowerOfTwo(buf.len)); // capacity must be a power of two
|
||||||
std.debug.assert(buf.len <= max_capacity);
|
std.debug.assert(buf.len <= max_capacity);
|
||||||
|
|
||||||
@memset(buf, 0);
|
|
||||||
|
|
||||||
return .{ .read = 0, .write = 0, .buf = buf };
|
return .{ .read = 0, .write = 0, .buf = buf };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue