| author | |
| committer | |
| log | 908c2c902ada674eae30d81a8fb5b6c43cdfe141 |
| tree | d9a5e47cbd05ff491af56e75577d928be9de4716 |
| parent | ca752c61c08eaa06458bdc6fa3cc724c09a62f77 |
1 files changed, 4 insertions(+), 0 deletions(-)
lib/std/Build/Cache/Path.zig+4| ... | ... | @@ -147,6 +147,10 @@ pub fn format( |
| 147 | 147 | } |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | pub fn eql(self: Path, other: Path) bool { | |
| 151 | return self.root_dir.eql(other.root_dir) and std.mem.eql(u8, self.sub_path, other.sub_path); | |
| 152 | } | |
| 153 | ||
| 150 | 154 | const Path = @This(); |
| 151 | 155 | const std = @import("../../std.zig"); |
| 152 | 156 | const fs = std.fs; |