Commit 86b6790b6a

Tetralux <tetralux@teknik.io>
2019-09-21 17:42:26
Remove 'inline', as per @andrewrk
1 parent 537b260
Changed files (1)
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;
     }
 };