Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit 841967e

Browse files
authored
Merge pull request #125 from aliemjay/patch-1
remove incorrect lifetime annotation
2 parents fa954aa + f121012 commit 841967e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wonnx/src/ir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl<'model> Node<'model> {
123123
let inputs: Result<Vec<Input<'model>>, IrError> = node
124124
.get_input()
125125
.iter()
126-
.map(|input_name: &'model String| {
126+
.map(|input_name: &String| {
127127
let my_input_name = input_name.clone();
128128
let source_node_definition = node_definitions_by_output
129129
.get(&my_input_name)

0 commit comments

Comments
 (0)