fixing linter errors
Test / build_and_test (push) Successful in 5m28s
Build / build (push) Successful in 7m26s

This commit is contained in:
2026-07-15 15:39:16 +02:00
parent 1640013546
commit 2375abf688
116 changed files with 563 additions and 354 deletions
+2 -1
View File
@@ -8,9 +8,10 @@ const SpinMutex = @import("SpinMutex.zig");
var mutex: SpinMutex = .{};
var child_allocator: std.mem.Allocator = if (builtin.link_libc) std.heap.c_allocator else std.heap.smp_allocator;
var fallback_host_allocator_context: u8 = 0;
pub const fallback_host_allocator: Allocator = .{
.ptr = undefined,
.ptr = &fallback_host_allocator_context,
.vtable = &vtable,
};