SignatureDB: Remove unnecessary qualifiers and virtual keywords

This commit is contained in:
Lioncash 2017-05-21 17:21:22 -04:00
parent 3c94962332
commit 5301efddd0
2 changed files with 6 additions and 6 deletions

View File

@ -44,7 +44,7 @@ std::unique_ptr<SignatureDBFormatHandler> CreateFormatHandler(SignatureDB::Handl
} }
} // Anonymous namespace } // Anonymous namespace
SignatureDB::SignatureDB(SignatureDB::HandlerType handler) : m_handler(CreateFormatHandler(handler)) SignatureDB::SignatureDB(HandlerType handler) : m_handler(CreateFormatHandler(handler))
{ {
} }

View File

@ -73,13 +73,13 @@ public:
static u32 ComputeCodeChecksum(u32 offsetStart, u32 offsetEnd); static u32 ComputeCodeChecksum(u32 offsetStart, u32 offsetEnd);
virtual void Clear() override; void Clear() override;
virtual void List() const override; void List() const override;
virtual void Populate(const PPCSymbolDB* func_db, const std::string& filter = "") override; void Populate(const PPCSymbolDB* func_db, const std::string& filter = "") override;
virtual void Apply(PPCSymbolDB* func_db) const override; void Apply(PPCSymbolDB* func_db) const override;
virtual bool Add(u32 startAddr, u32 size, const std::string& name) override; bool Add(u32 startAddr, u32 size, const std::string& name) override;
protected: protected:
// Map from signature to function. We store the DB in this map because it optimizes the // Map from signature to function. We store the DB in this map because it optimizes the