mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-25 14:41:32 +00:00
fix(llvm-backend) Mark a variable as unused.
This commit is contained in:
@ -47,10 +47,11 @@ impl Compiler for LLVMCompiler {
|
|||||||
use wasmer_runtime_core::module::ModuleInfo;
|
use wasmer_runtime_core::module::ModuleInfo;
|
||||||
|
|
||||||
struct Placeholder;
|
struct Placeholder;
|
||||||
|
|
||||||
impl CacheGen for Placeholder {
|
impl CacheGen for Placeholder {
|
||||||
fn generate_cache(
|
fn generate_cache(
|
||||||
&self,
|
&self,
|
||||||
module: &ModuleInner,
|
_module: &ModuleInner,
|
||||||
) -> Result<(Box<ModuleInfo>, Box<[u8]>, Memory), CacheError> {
|
) -> Result<(Box<ModuleInfo>, Box<[u8]>, Memory), CacheError> {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user