mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-06 02:26:30 +00:00
intrusive_list: Support inserters
Allows std::inserter, std::back_inserter, and std::front_inserter to work with intrusive lists.
This commit is contained in:
@@ -515,7 +515,7 @@ IR::Value IREmitter::Inst(IR::Opcode op, std::initializer_list<IR::Value> args)
|
||||
index++;
|
||||
});
|
||||
|
||||
block.instructions.Append(*inst);
|
||||
block.instructions.push_back(inst);
|
||||
return IR::Value(inst);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user