tools: remove unnecessary typename
[oota-llvm.git] / tools / llvm-readobj / ELFDumper.cpp
index bf3c9423f52c8791a87b396023149a3d6a08952c..59bc2c9c317e5dca0e3a2fe5955df053bd3a323c 100644 (file)
@@ -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;