chore: Remove unused constants

This commit is contained in:
Shane Kennedy 2022-09-07 23:53:04 +02:00 committed by Andrew Kelley
parent 349df40d14
commit c97d64b677

View File

@ -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