From 9d02e6c8f27483033c9b482f295421a5e47c69e1 Mon Sep 17 00:00:00 2001 From: Jakub Pruzinec Date: Sat, 30 Mar 2019 11:53:10 +0100 Subject: [PATCH] override added --- .../pe/pe_format_parser/pe_format_parser64.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/retdec/fileformat/file_format/pe/pe_format_parser/pe_format_parser64.h b/include/retdec/fileformat/file_format/pe/pe_format_parser/pe_format_parser64.h index be1003facc..dead166aae 100644 --- a/include/retdec/fileformat/file_format/pe/pe_format_parser/pe_format_parser64.h +++ b/include/retdec/fileformat/file_format/pe/pe_format_parser/pe_format_parser64.h @@ -68,12 +68,12 @@ class PeFormatParser64 : public PeFormatParser virtual bool getDebugEntryPointerToRawData(unsigned long long index, unsigned long long& pointerToRawData) const override; virtual unsigned long long getResourceDirectoryOffset() const override; virtual const PeLib::ResourceNode* getResourceTreeRoot() const override; - virtual unsigned long long getTlsStartAddressOfRawData() const; - virtual unsigned long long getTlsEndAddressOfRawData() const; - virtual unsigned long long getTlsAddressOfIndex() const; - virtual unsigned long long getTlsAddressOfCallBacks() const; - virtual unsigned long long getTlsSizeOfZeroFill() const; - virtual unsigned long long getTlsCharacteristics() const; + virtual unsigned long long getTlsStartAddressOfRawData() const override; + virtual unsigned long long getTlsEndAddressOfRawData() const override; + virtual unsigned long long getTlsAddressOfIndex() const override; + virtual unsigned long long getTlsAddressOfCallBacks() const override; + virtual unsigned long long getTlsSizeOfZeroFill() const override; + virtual unsigned long long getTlsCharacteristics() const override; virtual std::unique_ptr getClrHeader() const override; virtual unsigned long long getNumberOfRelocations() const override; virtual unsigned long long getNumberOfRelocationData(unsigned long long index) const override;