diff options
Diffstat (limited to 'lld/ELF/InputSection.h')
-rw-r--r-- | lld/ELF/InputSection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index f0de99ec084..cba8ee26767 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -42,7 +42,7 @@ public: StringRef getSectionName() const; const Elf_Shdr *getSectionHdr() const { return Header; } - const ObjectFile<ELFT> *getFile() const { return File; } + ObjectFile<ELFT> *getFile() const { return File; } // The writer sets and uses the addresses. uintX_t getOutputSectionOff() const { return OutputSectionOff; } |