Skip to content

Commit

Permalink
Fix Clippies (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr authored Nov 29, 2023
1 parent 262ccb7 commit 9deed5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused)]
#![allow(clippy::let_and_return, unused)]
use super::types::*;
use fp_bindgen_support::{
common::{abi::WasmAbi, mem::FatPtr},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unused)]
#![allow(clippy::let_and_return, unused)]
use super::types::*;
use fp_bindgen_support::{
common::{abi::WasmAbi, mem::FatPtr},
Expand Down
2 changes: 1 addition & 1 deletion fp-bindgen/src/generators/rust_wasmer2_runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ pub(crate) fn format_function_bindings(
new_func: String,
create_import_object_func: String,
) -> String {
rustfmt_wrapper::rustfmt(format!(r#"#![allow(unused)]
rustfmt_wrapper::rustfmt(format!(r#"#![allow(clippy::let_and_return, unused)]
use super::types::*;
use fp_bindgen_support::{{
common::{{mem::FatPtr, abi::WasmAbi}},
Expand Down

0 comments on commit 9deed5e

Please sign in to comment.