forked from OSchip/llvm-project
[ELF] Use override keyword instead of virtual
No functional changes. llvm-svn: 234157
This commit is contained in:
parent
3dac3ba595
commit
ac17bfd699
|
@ -27,10 +27,10 @@ public:
|
|||
_runtimeFile(new RuntimeFile<ELFT>(ctx, "C runtime")) {}
|
||||
|
||||
protected:
|
||||
virtual void buildDynamicSymbolTable(const File &file);
|
||||
virtual void addDefaultAtoms();
|
||||
virtual bool createImplicitFiles(std::vector<std::unique_ptr<File> > &);
|
||||
virtual void finalizeDefaultAtomValues();
|
||||
void buildDynamicSymbolTable(const File &file) override;
|
||||
void addDefaultAtoms() override;
|
||||
bool createImplicitFiles(std::vector<std::unique_ptr<File>> &) override;
|
||||
void finalizeDefaultAtomValues() override;
|
||||
|
||||
protected:
|
||||
std::unique_ptr<RuntimeFile<ELFT> > _runtimeFile;
|
||||
|
|
Loading…
Reference in New Issue