Update the compilers interface

This commit is contained in:
Omar Abdulla
2025-08-27 22:01:25 +03:00
parent 4b641b947b
commit af1eba0ccf
19 changed files with 502 additions and 912 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ impl Case {
pub fn solc_modes(&self) -> Vec<Mode> {
match &self.modes {
Some(modes) => ParsedMode::many_to_modes(modes.iter()).collect(),
None => Mode::all().collect(),
None => Mode::all().cloned().collect(),
}
}
}