add missing const to pkg dependencies

This commit is contained in:
wozeparrot 2020-04-27 16:26:12 +00:00 committed by Andrew Kelley
parent ecdf75d04e
commit 01605a7742

View File

@ -1054,7 +1054,7 @@ pub const Target = std.zig.CrossTarget;
pub const Pkg = struct {
name: []const u8,
path: []const u8,
dependencies: ?[]Pkg = null,
dependencies: ?[]const Pkg = null,
};
const CSourceFile = struct {