diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-23 02:50:50 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-23 02:50:50 +0000 |
| commit | 4b8baab90786c64a151ff185e7e8998032cb7f49 (patch) | |
| tree | 5560b4fd2066f1778944218c077d8ebef9c2854d | |
| parent | c404d50d7c085e668af38c1fe1d0078bc1520960 (diff) | |
| download | bcm5719-llvm-4b8baab90786c64a151ff185e7e8998032cb7f49.tar.gz bcm5719-llvm-4b8baab90786c64a151ff185e7e8998032cb7f49.zip | |
Trying to fix the windows build.
llvm-svn: 295925
| -rw-r--r-- | lld/ELF/InputSection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 09443e98e9f..7fa59a7e781 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -473,8 +473,8 @@ void InputSection<ELFT>::relocateNonAlloc(uint8_t *Buf, ArrayRef<RelTy> Rels) { } } -template <class ELFT> ObjectFile<ELFT> *InputSectionBase::getFile() const { - return cast_or_null<ObjectFile<ELFT>>(File); +template <class ELFT> elf::ObjectFile<ELFT> *InputSectionBase::getFile() const { + return cast_or_null<elf::ObjectFile<ELFT>>(File); } template <class ELFT> |

