Switch to std.HashMap for DirEntry store

This commit is contained in:
Jarred Sumner
2022-03-14 23:40:17 -07:00
parent aff9d232b1
commit 5aae8726ef
4 changed files with 40 additions and 16 deletions

View File

@@ -140,7 +140,7 @@ const Scanner = struct {
var iter = root.entries.data.iterator();
const fd = root.entries.fd;
while (iter.next()) |entry| {
this.next(entry.value, fd);
this.next(entry.value_ptr.*, fd);
}
}
}