Remove 'inline', as per @andrewrk

This commit is contained in:
Tetralux 2019-09-21 15:42:26 +00:00
parent 537b260349
commit 86b6790b6a
No known key found for this signature in database
GPG Key ID: F67F2C8AC5472B1B

View File

@ -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;
}
};