commit 01605a77428aefedbdf76830b6e4cab4853f2e4e (tree)
parent ecdf75d04e0b0193934d019e08aa46c45b67bef4
Author: wozeparrot <wozeparrot@gmail.com>
Date: Mon, 27 Apr 2020 16:26:12 +0000
add missing const to pkg dependencies
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/build.zig b/lib/std/build.zig
@@ -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 {