authorgravatar for tetralux@teknik.ioTetralux <tetralux@teknik.io> 2019-09-21 15:42:26+00:00
committergravatar for tetralux@teknik.ioTetralux <tetralux@teknik.io> 2019-09-21 15:42:26+00:00
log86b6790b6a7fc7fb6b85d5e970259af60ddd0290
treec6cc11a53f9db56dffc993abaa5f0714361f013e
parent537b26034925bf7452db2ff4cd6b29de92d77471
signaturelock-open Commit is signed but in an unrecognized format.

Remove 'inline', as per @andrewrk


1 files changed, 1 insertions(+), 1 deletions(-)

std/heap.zig+1-1
......@@ -481,7 +481,7 @@ pub const FixedBufferAllocator = struct {
481481 return old_mem[0..new_size];
482482 }
483483
484 pub inline fn reset(self: *FixedBufferAllocator) void {
484 pub fn reset(self: *FixedBufferAllocator) void {
485485 self.end_index = 0;
486486 }
487487};