[lld] r258563 - Remove unnecessary object:: prefix.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 22 13:49:08 PST 2016


Author: rafael
Date: Fri Jan 22 15:49:07 2016
New Revision: 258563

URL: http://llvm.org/viewvc/llvm-project?rev=258563&view=rev
Log:
Remove unnecessary object:: prefix.

Modified:
    lld/trunk/ELF/InputSection.cpp

Modified: lld/trunk/ELF/InputSection.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputSection.cpp?rev=258563&r1=258562&r2=258563&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.cpp (original)
+++ lld/trunk/ELF/InputSection.cpp Fri Jan 22 15:49:07 2016
@@ -378,27 +378,27 @@ bool MipsReginfoInputSection<ELFT>::clas
   return S->SectionKind == InputSectionBase<ELFT>::MipsReginfo;
 }
 
-template class elf2::InputSectionBase<object::ELF32LE>;
-template class elf2::InputSectionBase<object::ELF32BE>;
-template class elf2::InputSectionBase<object::ELF64LE>;
-template class elf2::InputSectionBase<object::ELF64BE>;
+template class elf2::InputSectionBase<ELF32LE>;
+template class elf2::InputSectionBase<ELF32BE>;
+template class elf2::InputSectionBase<ELF64LE>;
+template class elf2::InputSectionBase<ELF64BE>;
 
-template class elf2::InputSection<object::ELF32LE>;
-template class elf2::InputSection<object::ELF32BE>;
-template class elf2::InputSection<object::ELF64LE>;
-template class elf2::InputSection<object::ELF64BE>;
+template class elf2::InputSection<ELF32LE>;
+template class elf2::InputSection<ELF32BE>;
+template class elf2::InputSection<ELF64LE>;
+template class elf2::InputSection<ELF64BE>;
 
-template class elf2::EHInputSection<object::ELF32LE>;
-template class elf2::EHInputSection<object::ELF32BE>;
-template class elf2::EHInputSection<object::ELF64LE>;
-template class elf2::EHInputSection<object::ELF64BE>;
+template class elf2::EHInputSection<ELF32LE>;
+template class elf2::EHInputSection<ELF32BE>;
+template class elf2::EHInputSection<ELF64LE>;
+template class elf2::EHInputSection<ELF64BE>;
 
-template class elf2::MergeInputSection<object::ELF32LE>;
-template class elf2::MergeInputSection<object::ELF32BE>;
-template class elf2::MergeInputSection<object::ELF64LE>;
-template class elf2::MergeInputSection<object::ELF64BE>;
+template class elf2::MergeInputSection<ELF32LE>;
+template class elf2::MergeInputSection<ELF32BE>;
+template class elf2::MergeInputSection<ELF64LE>;
+template class elf2::MergeInputSection<ELF64BE>;
 
-template class elf2::MipsReginfoInputSection<object::ELF32LE>;
-template class elf2::MipsReginfoInputSection<object::ELF32BE>;
-template class elf2::MipsReginfoInputSection<object::ELF64LE>;
-template class elf2::MipsReginfoInputSection<object::ELF64BE>;
+template class elf2::MipsReginfoInputSection<ELF32LE>;
+template class elf2::MipsReginfoInputSection<ELF32BE>;
+template class elf2::MipsReginfoInputSection<ELF64LE>;
+template class elf2::MipsReginfoInputSection<ELF64BE>;




More information about the llvm-commits mailing list