From 6546844ca4274cd11ec2c91da7c6d7b5e8a82d0b Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 4 Dec 2025 15:10:40 -0500 Subject: [Rust] Fix misc clippy lints and warnings These are introduced after changing to Rust 1.91.1 --- plugins/idb_import/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/idb_import') diff --git a/plugins/idb_import/src/types.rs b/plugins/idb_import/src/types.rs index 77c089e9..933fec12 100644 --- a/plugins/idb_import/src/types.rs +++ b/plugins/idb_import/src/types.rs @@ -630,7 +630,7 @@ pub fn translate_til_types( arch: CoreArchitecture, til: &TILSection, progress: impl Fn(usize, usize) -> Result<(), ()>, -) -> Result> { +) -> Result>> { let total = til.symbols.len() + til.types.len(); let mut types = Vec::with_capacity(total); let mut types_by_ord = HashMap::with_capacity(total); -- cgit v1.3.1