Commit c97d64b677

Shane Kennedy <shane.kennedy19@gmail.com>
2022-09-07 23:53:04
chore: Remove unused constants
1 parent 349df40
Changed files (1)
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