summaryrefslogtreecommitdiff
path: root/plugins/idb_import
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-04 15:10:40 -0500
committerMason Reed <mason@vector35.com>2025-12-05 12:26:29 -0500
commit6546844ca4274cd11ec2c91da7c6d7b5e8a82d0b (patch)
tree7341b815993247cba9df7ea95585ce9723510fa0 /plugins/idb_import
parent6eb12c3c3f53079a822881bf6e197105b25a0fe3 (diff)
[Rust] Fix misc clippy lints and warnings
These are introduced after changing to Rust 1.91.1
Diffstat (limited to 'plugins/idb_import')
-rw-r--r--plugins/idb_import/src/types.rs2
1 files changed, 1 insertions, 1 deletions
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<Vec<TranslatesIDBType>> {
+) -> Result<Vec<TranslatesIDBType<'_>>> {
let total = til.symbols.len() + til.types.len();
let mut types = Vec::with_capacity(total);
let mut types_by_ord = HashMap::with_capacity(total);