Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoo committed Feb 21, 2024
1 parent 5dff8fc commit 405a447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasm-rpc-stubgen/src/stub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ fn collect_stub_resources<'a>(
resolve: &'a Resolve,
) -> anyhow::Result<Vec<InterfaceStub>> {
let mut interfaces = Vec::new();
for (name, type_id) in types {
for (_name, type_id) in types {
let typ = resolve
.types
.get(*type_id)
Expand Down

0 comments on commit 405a447

Please sign in to comment.