| author | |
| committer | |
| log | 5017a1d895847df6cc02dc4bedd02aa341177171 |
| tree | 4f04e9911a53018f229e8da797d614e539f2b0d1 |
| parent | b735764898412c5b9388fdf729c8ad8db43ddde5 |
2 files changed, 2 insertions(+), 2 deletions(-)
README.md+1-1| ... | ... | @@ -53,7 +53,7 @@ brew install cmake llvm@8 |
| 53 | 53 | brew outdated llvm@8 || brew upgrade llvm@8 |
| 54 | 54 | mkdir build |
| 55 | 55 | cd build |
| 56 | cmake .. -DCMAKE_PREFIX_PATH=/usr/local/Cellar/llvm/8.0.0 | |
| 56 | cmake .. -DCMAKE_PREFIX_PATH=/usr/local/Cellar/llvm/8.0.0_1 | |
| 57 | 57 | make install |
| 58 | 58 | ``` |
| 59 | 59 |
std/event/fs.zig+1-1| ... | ... | @@ -887,7 +887,7 @@ pub fn Watch(comptime V: type) type { |
| 887 | 887 | } |
| 888 | 888 | |
| 889 | 889 | async fn addFileKEvent(self: *Self, file_path: []const u8, value: V) !?V { |
| 890 | const resolved_path = try std.fs.path.resolve(self.channel.loop.allocator, [][]const u8{file_path}); | |
| 890 | const resolved_path = try std.fs.path.resolve(self.channel.loop.allocator, [_][]const u8{file_path}); | |
| 891 | 891 | var resolved_path_consumed = false; |
| 892 | 892 | defer if (!resolved_path_consumed) self.channel.loop.allocator.free(resolved_path); |
| 893 | 893 |