diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-09-21 22:21:46 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-09-21 22:21:46 +0000 |
| commit | f68b70725154c5b514bc6e05ef33b9bfd5a03686 (patch) | |
| tree | 231b64f1d1885e93aa799d4b48e41c027eb90936 | |
| parent | 327b8e19b19a7cb7348da92771725b375c2299b4 (diff) | |
| download | bcm5719-llvm-f68b70725154c5b514bc6e05ef33b9bfd5a03686.tar.gz bcm5719-llvm-f68b70725154c5b514bc6e05ef33b9bfd5a03686.zip | |
Trying to fix the MSVC build.
llvm-svn: 248219
| -rw-r--r-- | lld/ELF/OutputSections.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lld/ELF/OutputSections.cpp b/lld/ELF/OutputSections.cpp index d86793277fb..f64fbe2abd6 100644 --- a/lld/ELF/OutputSections.cpp +++ b/lld/ELF/OutputSections.cpp @@ -398,13 +398,13 @@ template class OutputSectionBase<false>; template class OutputSectionBase<true>; template void OutputSectionBase<false>::writeHeaderTo<support::little>( - typename ELFFile<ELFType<support::little, false>>::Elf_Shdr *SHdr); + ELFFile<ELFType<support::little, false>>::Elf_Shdr *SHdr); template void OutputSectionBase<true>::writeHeaderTo<support::little>( - typename ELFFile<ELFType<support::little, true>>::Elf_Shdr *SHdr); + ELFFile<ELFType<support::little, true>>::Elf_Shdr *SHdr); template void OutputSectionBase<false>::writeHeaderTo<support::big>( - typename ELFFile<ELFType<support::big, false>>::Elf_Shdr *SHdr); + ELFFile<ELFType<support::big, false>>::Elf_Shdr *SHdr); template void OutputSectionBase<true>::writeHeaderTo<support::big>( - typename ELFFile<ELFType<support::big, true>>::Elf_Shdr *SHdr); + ELFFile<ELFType<support::big, true>>::Elf_Shdr *SHdr); template class GotSection<ELF32LE>; template class GotSection<ELF32BE>; |

