Add `override` to the ARM64 JIT's destructor
This commit is contained in:
parent
582a421447
commit
733769303c
|
@ -101,7 +101,7 @@ public:
|
||||||
#else
|
#else
|
||||||
explicit Compiler(melonDS::NDS& nds) : XEmitter(), NDS(nds) {}
|
explicit Compiler(melonDS::NDS& nds) : XEmitter(), NDS(nds) {}
|
||||||
#endif
|
#endif
|
||||||
~Compiler();
|
~Compiler() override;
|
||||||
|
|
||||||
void PushRegs(bool saveHiRegs, bool saveRegsToBeChanged, bool allowUnload = true);
|
void PushRegs(bool saveHiRegs, bool saveRegsToBeChanged, bool allowUnload = true);
|
||||||
void PopRegs(bool saveHiRegs, bool saveRegsToBeChanged);
|
void PopRegs(bool saveHiRegs, bool saveRegsToBeChanged);
|
||||||
|
|
Loading…
Reference in New Issue