From 145258ad27b7db631f931b2252040d7be4758365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 27 May 2018 14:39:01 +0200 Subject: [PATCH] Debug: Add missing override specifiers --- Source/Core/Core/Debugger/PPCDebugInterface.h | 18 +++++++++--------- Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.h b/Source/Core/Core/Debugger/PPCDebugInterface.h index e231ce71dd..898bb7dd25 100644 --- a/Source/Core/Core/Debugger/PPCDebugInterface.h +++ b/Source/Core/Core/Debugger/PPCDebugInterface.h @@ -38,15 +38,15 @@ public: void ClearWatches() override; // Memory Patches - void SetPatch(u32 address, u32 value); - void SetPatch(u32 address, std::vector value); - const std::vector& GetPatches() const; - void UnsetPatch(u32 address); - void EnablePatch(std::size_t index); - void DisablePatch(std::size_t index); - bool HasEnabledPatch(u32 address) const; - void RemovePatch(std::size_t index); - void ClearPatches(); + void SetPatch(u32 address, u32 value) override; + void SetPatch(u32 address, std::vector value) override; + const std::vector& GetPatches() const override; + void UnsetPatch(u32 address) override; + void EnablePatch(std::size_t index) override; + void DisablePatch(std::size_t index) override; + bool HasEnabledPatch(u32 address) const override; + void RemovePatch(std::size_t index) override; + void ClearPatches() override; std::string Disassemble(unsigned int address) override; std::string GetRawMemoryString(int memory, unsigned int address) override; diff --git a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h index 05dbc0245a..36c5c3c93d 100644 --- a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h +++ b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h @@ -41,15 +41,15 @@ public: void ClearWatches() override; // Memory Patches - void SetPatch(u32 address, u32 value); - void SetPatch(u32 address, std::vector value); - const std::vector& GetPatches() const; - void UnsetPatch(u32 address); - void EnablePatch(std::size_t index); - void DisablePatch(std::size_t index); - void RemovePatch(std::size_t index); - bool HasEnabledPatch(u32 address) const; - void ClearPatches(); + void SetPatch(u32 address, u32 value) override; + void SetPatch(u32 address, std::vector value) override; + const std::vector& GetPatches() const override; + void UnsetPatch(u32 address) override; + void EnablePatch(std::size_t index) override; + void DisablePatch(std::size_t index) override; + void RemovePatch(std::size_t index) override; + bool HasEnabledPatch(u32 address) const override; + void ClearPatches() override; std::string Disassemble(unsigned int address) override; std::string GetRawMemoryString(int memory, unsigned int address) override;