diff options
| author | Jesse Talavera-Greenberg <jesse@jesse.tg> | 2023-12-06 09:17:09 -0500 | 
|---|---|---|
| committer | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2023-12-08 17:19:00 +0100 | 
| commit | 733769303c8f6f422b0e837add453406b9da6720 (patch) | |
| tree | af98ce49b93d988eb6c0423e50a6a09b4c0d60dc | |
| parent | 582a421447d7d6e5b414caa9189b583a0051617e (diff) | |
Add `override` to the ARM64 JIT's destructor
| -rw-r--r-- | src/ARMJIT_A64/ARMJIT_Compiler.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ARMJIT_A64/ARMJIT_Compiler.h b/src/ARMJIT_A64/ARMJIT_Compiler.h index 72dd7bc..7765690 100644 --- a/src/ARMJIT_A64/ARMJIT_Compiler.h +++ b/src/ARMJIT_A64/ARMJIT_Compiler.h @@ -101,7 +101,7 @@ public:  #else      explicit Compiler(melonDS::NDS& nds) : XEmitter(), NDS(nds) {}  #endif -    ~Compiler(); +    ~Compiler() override;      void PushRegs(bool saveHiRegs, bool saveRegsToBeChanged, bool allowUnload = true);      void PopRegs(bool saveHiRegs, bool saveRegsToBeChanged);  |