mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-06-23 11:41:58 +00:00
remove line
This commit is contained in:
@ -538,10 +538,7 @@ fn f64_from_bits(mut v: u64) -> f64 {
|
|||||||
macro_rules! impl_integer_arithmetic_ops {
|
macro_rules! impl_integer_arithmetic_ops {
|
||||||
($type: ident) => {
|
($type: ident) => {
|
||||||
impl ArithmeticOps<$type> for $type {
|
impl ArithmeticOps<$type> for $type {
|
||||||
fn add(self, other: $type) -> $type {
|
fn add(self, other: $type) -> $type { self.wrapping_add(other) }
|
||||||
|
|
||||||
self.wrapping_add(other)
|
|
||||||
}
|
|
||||||
fn sub(self, other: $type) -> $type { self.wrapping_sub(other) }
|
fn sub(self, other: $type) -> $type { self.wrapping_sub(other) }
|
||||||
fn mul(self, other: $type) -> $type { self.wrapping_mul(other) }
|
fn mul(self, other: $type) -> $type { self.wrapping_mul(other) }
|
||||||
fn div(self, other: $type) -> Result<$type, Error> {
|
fn div(self, other: $type) -> Result<$type, Error> {
|
||||||
|
Reference in New Issue
Block a user