block_of_code: Explicitly delete copy constructor

This commit is contained in:
MerryMage 2019-05-02 21:41:49 +01:00
parent 605a43d23e
commit 5debb411cc

View file

@ -31,6 +31,8 @@ struct RunCodeCallbacks {
class BlockOfCode final : public Xbyak::CodeGenerator {
public:
BlockOfCode(RunCodeCallbacks cb, JitStateInfo jsi);
BlockOfCode(const BlockOfCode&) = delete;
/// Call when external emitters have finished emitting their preludes.
void PreludeComplete();