improve format

This commit is contained in:
Patrick Ventuzelo
2019-12-05 15:18:53 +01:00
parent 2b24d17425
commit e968b9313b

View File

@@ -515,8 +515,9 @@ where
let new_cc = block.calling_convention.clone();
if !(cc.is_none() || cc == new_cc) {
return Err(Error::Microwasm("Can't pass different params to different elements of `br_table` \
yet".to_string()));
return Err(Error::Microwasm(
"Can't pass different params to different elements of `br_table` yet"
.to_string()));
}
cc = new_cc;
}