cargo fmt

This commit is contained in:
Patrick Ventuzelo
2019-12-10 14:07:50 +01:00
parent c4511d53e1
commit a8cef86826

View File

@@ -3178,11 +3178,9 @@ impl<'this, M: ModuleContext> Context<'this, M> {
fn pop(&mut self) -> Result<ValueLocation, Error> { fn pop(&mut self) -> Result<ValueLocation, Error> {
match self.block_state.stack.pop() { match self.block_state.stack.pop() {
Some(v) => Ok(v), Some(v) => Ok(v),
None => { None => Err(Error::Microwasm(
Err(Error::Microwasm(
"Stack is empty - pop impossible".to_string(), "Stack is empty - pop impossible".to_string(),
)) )),
}
} }
} }