mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 16:56:09 +03:00
circbuf rotateToZero does nothing if its already at zero
This commit is contained in:
@ -70,6 +70,9 @@ pub fn CircBuf(comptime T: type, comptime default: T) type {
|
|||||||
// TODO: this does this in the worst possible way by allocating.
|
// TODO: this does this in the worst possible way by allocating.
|
||||||
// rewrite to not allocate, its possible, I'm just lazy right now.
|
// rewrite to not allocate, its possible, I'm just lazy right now.
|
||||||
|
|
||||||
|
// If we're already at zero then do nothing.
|
||||||
|
if (self.tail == 0) return;
|
||||||
|
|
||||||
var buf = try alloc.alloc(T, self.storage.len);
|
var buf = try alloc.alloc(T, self.storage.len);
|
||||||
defer {
|
defer {
|
||||||
self.head = if (self.full) 0 else self.len();
|
self.head = if (self.full) 0 else self.len();
|
||||||
|
Reference in New Issue
Block a user