mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
tools: remove unnecessary typename
This is acceptted by clang and gcc, but MSVC seems to balk at it. As it is unneeded, simply drop it. Fixes MSVC buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200456 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
db752405cb
commit
a2a6c3911d
@ -875,8 +875,8 @@ void ELFDumper<ELFType<support::little, 2, false> >::printAttributes() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DictScope BA(W, "BuildAttributes");
|
DictScope BA(W, "BuildAttributes");
|
||||||
for (typename ELFO::Elf_Shdr_Iter SI = Obj->begin_sections(),
|
for (ELFO::Elf_Shdr_Iter SI = Obj->begin_sections(), SE = Obj->end_sections();
|
||||||
SE = Obj->end_sections(); SI != SE; ++SI) {
|
SI != SE; ++SI) {
|
||||||
if (SI->sh_type != ELF::SHT_ARM_ATTRIBUTES)
|
if (SI->sh_type != ELF::SHT_ARM_ATTRIBUTES)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user