mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
Add include paths to CompilerConfiguration
We'll try to load .60 files from those paths.
This commit is contained in:
parent
ada5f68908
commit
114b51f32b
2 changed files with 32 additions and 3 deletions
|
@ -292,3 +292,11 @@ impl quote::ToTokens for BuildDiagnostics {
|
|||
self.iter().for_each(|diag| diag.to_tokens(tokens))
|
||||
}
|
||||
}
|
||||
|
||||
impl Extend<FileDiagnostics> for BuildDiagnostics {
|
||||
fn extend<T: IntoIterator<Item = FileDiagnostics>>(&mut self, iter: T) {
|
||||
for diag in iter {
|
||||
self.add(diag)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue