Skip to content

Commit

Permalink
vm: derive Clone for Vm
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 15, 2024
1 parent edad222 commit 7adf61d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use crate::library::{Lib, LibId, LibSite};
use crate::reg::CoreRegs;

/// Alu virtual machine providing single-core execution environment
#[derive(Debug, Default)]
#[derive(Clone, Debug, Default)]
pub struct Vm<Isa = Instr<ReservedOp>>
where Isa: InstructionSet
{
Expand Down

0 comments on commit 7adf61d

Please sign in to comment.