diff --git a/std/heap.zig b/std/heap.zig index 046103c445ba702bd0204fb7665ba4012bedf023..a07f7505676988aba9a6514c2ce49f161221e33e 100644 --- a/std/heap.zig +++ b/std/heap.zig @@ -481,7 +481,7 @@ pub const FixedBufferAllocator = struct { return old_mem[0..new_size]; } - pub inline fn reset(self: *FixedBufferAllocator) void { + pub fn reset(self: *FixedBufferAllocator) void { self.end_index = 0; } };