Fix redundant_field_names

This commit is contained in:
Brandon Fish 2018-12-08 00:16:16 -06:00
parent d2f0663f72
commit 704556e45e
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ pub fn instantiate(
mock_missing_tables: true, mock_missing_tables: true,
use_emscripten: is_emscripten_module(&module), use_emscripten: is_emscripten_module(&module),
show_progressbar: true, show_progressbar: true,
isa: isa, isa,
}, },
)?; )?;
debug!("webassembly - instance created"); debug!("webassembly - instance created");

View File

@ -76,7 +76,7 @@ impl<T> ImportableExportable<T> {
Self { Self {
entity, entity,
export_names: Vec::new(), export_names: Vec::new(),
import_name: import_name, import_name,
} }
} }
} }