Fix todo! in FileIterator::next_path

This commit is contained in:
Luke Street 2024-09-29 12:02:55 -06:00
parent 68f4552e44
commit dfda3d5ea3
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ impl FileIterator {
self.index += 1;
match map_file(&path) {
Ok(FileEntry::MappedFile(map)) => self.handle_file(map, path),
Ok(FileEntry::Buffer(_, _)) => todo!(),
Ok(entry) => Some(Ok((path, entry))),
Err(err) => Some(Err(err)),
}
}