Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Dec 12, 2024
1 parent 70f81ea commit 77b6125
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hugr-core/src/extension/resolution/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ pub(crate) fn collect_op_types_extensions(
}
OpType::FuncDefn(f) => collect_signature_exts(f.signature.body(), &mut used, &mut missing),
OpType::FuncDecl(f) => collect_signature_exts(f.signature.body(), &mut used, &mut missing),
OpType::Const(c) => {
collect_value_exts(&c.value, &mut used, &mut missing);
}
OpType::Const(c) => collect_value_exts(&c.value, &mut used, &mut missing),
OpType::Input(inp) => collect_type_row_exts(&inp.types, &mut used, &mut missing),
OpType::Output(out) => collect_type_row_exts(&out.types, &mut used, &mut missing),
OpType::Call(c) => {
Expand Down

0 comments on commit 77b6125

Please sign in to comment.