From c97d64b677eb891144fb356e1f4b9011c60cc0e2 Mon Sep 17 00:00:00 2001 From: Shane Kennedy Date: Wed, 7 Sep 2022 23:53:04 +0200 Subject: [PATCH] chore: Remove unused constants --- lib/std/linked_list.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/std/linked_list.zig b/lib/std/linked_list.zig index 5039e16583..577bae3d38 100644 --- a/lib/std/linked_list.zig +++ b/lib/std/linked_list.zig @@ -2,8 +2,6 @@ const std = @import("std.zig"); const debug = std.debug; const assert = debug.assert; const testing = std.testing; -const mem = std.mem; -const Allocator = mem.Allocator; /// A singly-linked list is headed by a single forward pointer. The elements /// are singly linked for minimum space and pointer manipulation overhead at