From 198d686a413a8e82ad47474ec3c8ff0a1814b4de Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 14 May 2017 16:20:13 -0400 Subject: [PATCH] MEGASignatureDB: Add missing override specifiers --- .../Core/PowerPC/SignatureDB/MEGASignatureDB.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Core/Core/PowerPC/SignatureDB/MEGASignatureDB.h b/Source/Core/Core/PowerPC/SignatureDB/MEGASignatureDB.h index 8dad614791..35cb2aa8a0 100644 --- a/Source/Core/Core/PowerPC/SignatureDB/MEGASignatureDB.h +++ b/Source/Core/Core/PowerPC/SignatureDB/MEGASignatureDB.h @@ -40,17 +40,17 @@ class MEGASignatureDB : public SignatureDBFormatHandler { public: MEGASignatureDB(); - ~MEGASignatureDB(); + ~MEGASignatureDB() override; - void Clear(); - bool Load(const std::string& file_path); - bool Save(const std::string& file_path) const; - void List() const; + void Clear() override; + bool Load(const std::string& file_path) override; + bool Save(const std::string& file_path) const override; + void List() const override; - void Apply(PPCSymbolDB* symbol_db) const; - void Populate(const PPCSymbolDB* func_db, const std::string& filter = ""); + void Apply(PPCSymbolDB* symbol_db) const override; + void Populate(const PPCSymbolDB* func_db, const std::string& filter = "") override; - bool Add(u32 startAddr, u32 size, const std::string& name); + bool Add(u32 startAddr, u32 size, const std::string& name) override; private: std::vector m_signatures;