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

remove incorrect lifetime annotation #125

Merged
merged 1 commit into from
Aug 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wonnx/src/ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl<'model> Node<'model> {
let inputs: Result<Vec<Input<'model>>, 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)
Expand Down