Fixed clippy issues

This commit is contained in:
Syrus
2019-06-13 21:32:05 +02:00
parent 583fdb5c4a
commit 86b78c6b14

View File

@ -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)
}