Clippy fixes

This commit is contained in:
microproofs
2024-09-12 19:13:31 -04:00
parent 8d13b0b706
commit 3f2de2665d
3 changed files with 4 additions and 4 deletions

View File

@@ -1818,5 +1818,5 @@ pub fn pop_pattern(interner: &mut AirInterner, pattern: &TypedPattern) {
pub fn introduce_name(interner: &mut AirInterner, name: &String) -> String {
interner.intern(name.clone());
interner.lookup_interned(&name)
interner.lookup_interned(name)
}