mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 07:35:45 +00:00
shader: Add copy constructor to instructions
This commit is contained in:
parent
8cfa8cda16
commit
50d20bf0e9
4 changed files with 20 additions and 1 deletions
|
@ -116,10 +116,10 @@ public:
|
|||
class Inst : public boost::intrusive::list_base_hook<> {
|
||||
public:
|
||||
explicit Inst(IR::Opcode op_, u32 flags_) noexcept;
|
||||
explicit Inst(const Inst& base);
|
||||
~Inst();
|
||||
|
||||
Inst& operator=(const Inst&) = delete;
|
||||
Inst(const Inst&) = delete;
|
||||
|
||||
Inst& operator=(Inst&&) = delete;
|
||||
Inst(Inst&&) = delete;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue