Trying to fix the windows build.

llvm-svn: 295925
This commit is contained in:
Rafael Espindola 2017-02-23 02:50:50 +00:00
parent c404d50d7c
commit 4b8baab907
1 changed files with 2 additions and 2 deletions

View File

@ -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>