manual clippy fixes

This commit is contained in:
Folkert 2023-06-26 20:45:39 +02:00
parent ef39bad7c6
commit 2d616d1fe9
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
6 changed files with 9 additions and 9 deletions

View file

@ -1427,7 +1427,7 @@ impl<'a> DropSpecializationEnvironment<'a> {
}
}
fn create_symbol<'i>(&self, ident_ids: &'i mut IdentIds, debug_name: &str) -> Symbol {
fn create_symbol(&self, ident_ids: &mut IdentIds, debug_name: &str) -> Symbol {
let ident_id = ident_ids.add_str(debug_name);
Symbol::new(self.home, ident_id)
}