diff --git a/src/vm/vm.rs b/src/vm/vm.rs index 1d61c4d..95fe972 100644 --- a/src/vm/vm.rs +++ b/src/vm/vm.rs @@ -33,6 +33,8 @@ pub struct VM { pub ip: usize, } +unsafe impl Send for VM {} + // NOTE: use Opcode::same and Opcode.to_byte() rather than actual bytes // Don't worry, the compiler *should* get rid of this overhead and just use // bytes