diff options
Diffstat (limited to 'llvm/lib/ObjCopy/ELF/ELFObject.h')
| -rw-r--r-- | llvm/lib/ObjCopy/ELF/ELFObject.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/ObjCopy/ELF/ELFObject.h b/llvm/lib/ObjCopy/ELF/ELFObject.h index 799db5034532..2c3ea3a5f6d6 100644 --- a/llvm/lib/ObjCopy/ELF/ELFObject.h +++ b/llvm/lib/ObjCopy/ELF/ELFObject.h @@ -115,13 +115,13 @@ public: Error visit(const OwnedDataSection &Sec) override; Error visit(const StringTableSection &Sec) override; Error visit(const DynamicRelocationSection &Sec) override; - virtual Error visit(const SymbolTableSection &Sec) override = 0; - virtual Error visit(const RelocationSection &Sec) override = 0; - virtual Error visit(const GnuDebugLinkSection &Sec) override = 0; - virtual Error visit(const GroupSection &Sec) override = 0; - virtual Error visit(const SectionIndexSection &Sec) override = 0; - virtual Error visit(const CompressedSection &Sec) override = 0; - virtual Error visit(const DecompressedSection &Sec) override = 0; + Error visit(const SymbolTableSection &Sec) override = 0; + Error visit(const RelocationSection &Sec) override = 0; + Error visit(const GnuDebugLinkSection &Sec) override = 0; + Error visit(const GroupSection &Sec) override = 0; + Error visit(const SectionIndexSection &Sec) override = 0; + Error visit(const CompressedSection &Sec) override = 0; + Error visit(const DecompressedSection &Sec) override = 0; explicit SectionWriter(WritableMemoryBuffer &Buf) : Out(Buf) {} }; |
