Fixed a tricky type erasure bug in the scheduler

This commit is contained in:
2023-10-12 14:36:59 +01:00
parent af3e9f67fa
commit cb395da894
32 changed files with 147 additions and 125 deletions

View File

@@ -5,7 +5,7 @@ use crate::sourcefile::FileEntry;
#[derive(Debug)]
pub struct LoadedSource {
pub entries: Vec<FileEntry>
pub entries: Vec<FileEntry>,
}
pub type LoadedSourceTable = HashMap<VName, LoadedSource>;