Fix clippy lints

Fixes: #2926
This commit is contained in:
Wolfgang Silbermayr
2022-06-07 09:12:28 +02:00
parent 6c7ce0ba45
commit 5339f7cdae
119 changed files with 864 additions and 831 deletions

View File

@ -252,7 +252,7 @@ impl Compiler for LLVMCompiler {
input,
self.config(),
memory_styles,
&table_styles,
table_styles,
&ShortNames {},
)
},
@ -353,7 +353,7 @@ impl Compiler for LLVMCompiler {
FuncTrampoline::new(target_machine)
},
|func_trampoline, func_type| {
func_trampoline.dynamic_trampoline(&func_type, self.config(), "")
func_trampoline.dynamic_trampoline(func_type, self.config(), "")
},
)
.collect::<Result<Vec<_>, CompileError>>()?