Merge pull request #6 from wasmerio/add-c-api

Add C API
This commit is contained in:
Mark McCaskey
2020-05-08 16:10:09 -07:00
committed by GitHub
141 changed files with 20357 additions and 40 deletions

View File

@@ -142,7 +142,7 @@ impl CompilerConfig for LLVMConfig {
}
/// Transform it into the compiler
fn compiler(&self) -> Box<dyn Compiler> {
fn compiler(&self) -> Box<dyn Compiler + Send> {
Box::new(LLVMCompiler::new(&self))
}
}