mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-13 09:01:21 +00:00
Fixed clippy issues
This commit is contained in:
@ -1,11 +1,11 @@
|
|||||||
use wasmer_runtime_core::vm::Ctx;
|
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 {
|
pub fn _llvm_copysign_f32(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
|
||||||
x.copysign(y)
|
x.copysign(y)
|
||||||
}
|
}
|
||||||
|
|
||||||
#![allow(clippy::all)]
|
#[allow(clippy::all)]
|
||||||
pub fn _llvm_copysign_f64(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
|
pub fn _llvm_copysign_f64(_ctx: &mut Ctx, x: f64, y: f64) -> f64 {
|
||||||
x.copysign(y)
|
x.copysign(y)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user