Undoing some formatting

This commit is contained in:
Pauan 2019-07-16 22:52:01 +02:00
parent fd88626e38
commit 4e504654d1

View File

@ -177,7 +177,6 @@ if_std! {
}
impl OptionIntoWasmAbi for String {
#[inline]
fn none() -> Self::Abi { null_slice() }
}
@ -205,7 +204,9 @@ impl<'a> IntoWasmAbi for &'a str {
}
impl<'a> OptionIntoWasmAbi for &'a str {
fn none() -> Self::Abi { null_slice() }
fn none() -> Self::Abi {
null_slice()
}
}
impl RefFromWasmAbi for str {