commit c97d64b677eb891144fb356e1f4b9011c60cc0e2 (tree)
parent 349df40d14a3a66c1cbfd7ebacc4adac3ce29f46
Author: Shane Kennedy <shane.kennedy19@gmail.com>
Date: Wed, 7 Sep 2022 23:53:04 +0200
chore: Remove unused constants
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git 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