From f1210127163b4054f920a52f70979bafe7750400 Mon Sep 17 00:00:00 2001 From: Ali MJ Al-Nasrawy Date: Tue, 16 Aug 2022 09:51:24 +0300 Subject: [PATCH] remove incorrect lifetime annotation --- wonnx/src/ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wonnx/src/ir.rs b/wonnx/src/ir.rs index 1cd864d1..b615c358 100644 --- a/wonnx/src/ir.rs +++ b/wonnx/src/ir.rs @@ -123,7 +123,7 @@ impl<'model> Node<'model> { let inputs: Result>, IrError> = node .get_input() .iter() - .map(|input_name: &'model String| { + .map(|input_name: &String| { let my_input_name = input_name.clone(); let source_node_definition = node_definitions_by_output .get(&my_input_name)