Fix all compilation issues simplifying the code

This commit is contained in:
Syrus Akbary
2020-12-04 15:58:23 -08:00
parent 601294dfaf
commit 1ee0146954
14 changed files with 24 additions and 24 deletions

View File

@@ -207,7 +207,7 @@ impl CompilerConfig for LLVM {
}
/// Transform it into the compiler.
fn compiler(self: Box<Self>) -> Box<dyn Compiler + Send> {
fn compiler(self: Box<Self>) -> Box<dyn Compiler> {
Box::new(LLVMCompiler::new(*self))
}