Ignore argument

This commit is contained in:
Ayaz Hafiz 2022-08-10 20:23:17 -07:00
parent 10288d3430
commit d8c18cc898
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -143,7 +143,7 @@ pub fn helper(
for problem in can_problems.into_iter() {
// Ignore "unused" problems
match problem {
UnusedDef(_, _) | UnusedArgument(_, _, _) | UnusedImport(_, _) => {
UnusedDef(_, _) | UnusedArgument(_, _, _, _) | UnusedImport(_, _) => {
delayed_errors.push(problem);
continue;
}