[lld] r248219 - Trying to fix the MSVC build.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 21 15:21:46 PDT 2015
Author: rafael
Date: Mon Sep 21 17:21:46 2015
New Revision: 248219
URL: http://llvm.org/viewvc/llvm-project?rev=248219&view=rev
Log:
Trying to fix the MSVC build.
Modified:
lld/trunk/ELF/OutputSections.cpp
Modified: lld/trunk/ELF/OutputSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/OutputSections.cpp?rev=248219&r1=248218&r2=248219&view=diff
==============================================================================
--- lld/trunk/ELF/OutputSections.cpp (original)
+++ lld/trunk/ELF/OutputSections.cpp Mon Sep 21 17:21:46 2015
@@ -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>;
More information about the llvm-commits
mailing list