mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-07 06:39:06 +00:00
Fix -Wdeprecated-copy warning.
This commit is contained in:
parent
ac24f0506c
commit
1acd6b34e9
|
|
@ -655,6 +655,7 @@ union Instruction {
|
|||
}
|
||||
|
||||
constexpr Instruction(u64 value) : value{value} {}
|
||||
constexpr Instruction(const Instruction& instr) : value(instr.value) {}
|
||||
|
||||
BitField<0, 8, Register> gpr0;
|
||||
BitField<8, 8, Register> gpr8;
|
||||
|
|
|
|||
Loading…
Reference in a new issue