cargo fmt

This commit is contained in:
Felix Schütt
2022-10-14 14:12:52 +02:00
parent 607050641c
commit ad1f4fea05
2 changed files with 6 additions and 2 deletions

View File

@@ -141,7 +141,11 @@ fn is_table_element_type_compatible(exported_type: Type, imported_type: Type) ->
}
}
fn is_table_compatible(exported: &TableType, imported: &TableType, imported_runtime_size: Option<u32>) -> bool {
fn is_table_compatible(
exported: &TableType,
imported: &TableType,
imported_runtime_size: Option<u32>,
) -> bool {
let TableType {
ty: exported_ty,
minimum: exported_minimum,