mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-07 11:54:01 +00:00
microinstruction: Make constructor explicit
This commit is contained in:
parent
fd5362e968
commit
06ec4b5977
@ -22,7 +22,7 @@ namespace IR {
|
||||
*/
|
||||
class Inst final : public Common::IntrusiveListNode<Inst> {
|
||||
public:
|
||||
Inst(Opcode op) : op(op) {}
|
||||
explicit Inst(Opcode op) : op(op) {}
|
||||
|
||||
bool HasUses() const { return use_count > 0; }
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user