Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Aug 29, 2023
1 parent db7dd1b commit d9f4662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/oxc_hir/src/visit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub trait Visit<'a>: Sized {
}

fn visit_using_declaration(&mut self, declaration: &'a UsingDeclaration<'a>) {
for decl in declaration.declarations.iter() {
for decl in &declaration.declarations {
self.visit_variable_declarator(decl);
}
}
Expand Down

0 comments on commit d9f4662

Please sign in to comment.