mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +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");
|
||||
for (typename ELFO::Elf_Shdr_Iter SI = Obj->begin_sections(),
|
||||
SE = Obj->end_sections(); SI != SE; ++SI) {
|
||||
for (ELFO::Elf_Shdr_Iter SI = Obj->begin_sections(), SE = Obj->end_sections();
|
||||
SI != SE; ++SI) {
|
||||
if (SI->sh_type != ELF::SHT_ARM_ATTRIBUTES)
|
||||
continue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user