| author | |
| committer | |
| log | 2cfa0f567d42a8dace0fb186c710548f18ae0639 |
| tree | f408d5d6d9493795222ac81770e8aed8e9cd0db1 |
| parent | 2139eb75f9e1e6fa766797b60566b254efce2f8f |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/compiler/build_runner.zig+1-1| ... | ... | @@ -415,7 +415,7 @@ pub fn main() !void { |
| 415 | 415 | else => return err, |
| 416 | 416 | }; |
| 417 | 417 | |
| 418 | var w = if (watch) try Watch.init() else undefined; | |
| 418 | var w: Watch = if (watch and Watch.have_impl) try Watch.init() else undefined; | |
| 419 | 419 | |
| 420 | 420 | try run.thread_pool.init(thread_pool_options); |
| 421 | 421 | defer run.thread_pool.deinit(); |
lib/std/Build/Watch.zig+1-1| ... | ... | @@ -600,7 +600,7 @@ const Os = switch (builtin.os.tag) { |
| 600 | 600 | }; |
| 601 | 601 | } |
| 602 | 602 | }, |
| 603 | .dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos, .haiku => struct { | |
| 603 | .dragonfly, .freebsd, .netbsd, .openbsd, .ios, .macos, .tvos, .visionos, .watchos => struct { | |
| 604 | 604 | const posix = std.posix; |
| 605 | 605 | |
| 606 | 606 | kq_fd: i32, |