aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
Diffstat (limited to 'std')
-rw-r--r--std/heap.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/heap.zig b/std/heap.zig
index 046103c445..a07f750567 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;
}
};