mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-09 14:18:20 +00:00
Fixed clippy issues
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
use wasmer_runtime_core::vm::Ctx;
|
||||
|
||||
#![allow(clippy::all)]
|
||||
#[allow(clippy::all)]
|
||||
pub fn _llvm_copysign_f32(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
|
||||
x.copysign(y)
|
||||
}
|
||||
|
||||
#![allow(clippy::all)]
|
||||
#[allow(clippy::all)]
|
||||
pub fn _llvm_copysign_f64(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
|
||||
x.copysign(y)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user