authorgravatar for aleksey.kladov@gmail.comAlex Kladov <aleksey.kladov@gmail.com> 2024-06-20 12:12:20+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-06-20 15:17:31-04:00
log5afd774db35e1e12cc49aab5b7f134b741545b80
tree7f6e601bb1588177fa35a612107f79a1f9dca71b
parentf7d72ce881db7162aa74ec0fa05ee3af76ecfe1c

std: mark Build.args as const

I don't think these are intended to be mutated!

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build.zig+1-1
......@@ -56,7 +56,7 @@ build_root: Cache.Directory,
5656cache_root: Cache.Directory,
5757zig_lib_dir: ?LazyPath,
5858pkg_config_pkg_list: ?(PkgConfigError![]const PkgConfigPkg) = null,
59args: ?[][]const u8 = null,
59args: ?[]const []const u8 = null,
6060debug_log_scopes: []const []const u8 = &.{},
6161debug_compile_errors: bool = false,
6262debug_pkg_config: bool = false,