summaryrefslogtreecommitdiff
path: root/plugins/idb_import/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/idb_import/src')
-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);