From 9e7fa4ed520b48b04423524332e6c081fe671515 Mon Sep 17 00:00:00 2001 From: dweiller <4678790+dweiller@users.noreply.github.com> Date: Tue, 3 Sep 2024 03:38:19 +1000 Subject: [PATCH] chore: remove unused import This import must be removed to prevent a compile error introduced in 0.14.0-dev.1409+6d2945f1f that prevents decls and fields from having the same name. --- src/ThreadHeapMap.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ThreadHeapMap.zig b/src/ThreadHeapMap.zig index 277537f..be35c48 100644 --- a/src/ThreadHeapMap.zig +++ b/src/ThreadHeapMap.zig @@ -118,4 +118,3 @@ const Allocator = std.mem.Allocator; const Heap = @import("Heap.zig"); const log = @import("log"); -const list = @import("list.zig");