Remove unused std.Buffer imports

This commit is contained in:
daurnimator 2020-02-11 23:04:19 +11:00 committed by Andrew Kelley
parent 5c0d6ef5ec
commit 1cbf352cfb
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9
3 changed files with 0 additions and 3 deletions

View File

@ -6,7 +6,6 @@ const BufMap = std.BufMap;
const warn = std.debug.warn;
const mem = std.mem;
const ArrayList = std.ArrayList;
const Buffer = std.Buffer;
const io = std.io;
const fs = std.fs;
const InstallDirectoryOptions = std.build.InstallDirectoryOptions;

View File

@ -9,7 +9,6 @@ const mem = std.mem;
const process = std.process;
const ArrayList = std.ArrayList;
const BufMap = std.BufMap;
const Buffer = std.Buffer;
const warn = std.debug.warn;
const max_stdout_size = 1 * 1024 * 1024; // 1 MiB

View File

@ -9,7 +9,6 @@ const mem = std.mem;
const process = std.process;
const Allocator = mem.Allocator;
const ArrayList = std.ArrayList;
const Buffer = std.Buffer;
const c = @import("c.zig");
const introspect = @import("introspect.zig");