fix(llvm-backend) Mark a variable as unused.

This commit is contained in:
Ivan Enderlin
2019-03-29 10:09:10 +01:00
parent b03980f8c9
commit 5cd45cbc28

View File

@ -47,10 +47,11 @@ impl Compiler for LLVMCompiler {
use wasmer_runtime_core::module::ModuleInfo;
struct Placeholder;
impl CacheGen for Placeholder {
fn generate_cache(
&self,
module: &ModuleInner,
_module: &ModuleInner,
) -> Result<(Box<ModuleInfo>, Box<[u8]>, Memory), CacheError> {
unimplemented!()
}