[lld] r258427 - Style change. NFC.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 21 12:18:37 PST 2016


Author: ruiu
Date: Thu Jan 21 14:18:36 2016
New Revision: 258427

URL: http://llvm.org/viewvc/llvm-project?rev=258427&view=rev
Log:
Style change. NFC.

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=258427&r1=258426&r2=258427&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.cpp (original)
+++ lld/trunk/ELF/InputSection.cpp Thu Jan 21 14:18:36 2016
@@ -378,31 +378,27 @@ bool MipsReginfoInputSection<ELFT>::clas
   return S->SectionKind == InputSectionBase<ELFT>::MipsReginfo;
 }
 
-namespace lld {
-namespace elf2 {
-template class InputSectionBase<object::ELF32LE>;
-template class InputSectionBase<object::ELF32BE>;
-template class InputSectionBase<object::ELF64LE>;
-template class InputSectionBase<object::ELF64BE>;
+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 InputSection<object::ELF32LE>;
-template class InputSection<object::ELF32BE>;
-template class InputSection<object::ELF64LE>;
-template class InputSection<object::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 EHInputSection<object::ELF32LE>;
-template class EHInputSection<object::ELF32BE>;
-template class EHInputSection<object::ELF64LE>;
-template class EHInputSection<object::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 MergeInputSection<object::ELF32LE>;
-template class MergeInputSection<object::ELF32BE>;
-template class MergeInputSection<object::ELF64LE>;
-template class MergeInputSection<object::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 MipsReginfoInputSection<object::ELF32LE>;
-template class MipsReginfoInputSection<object::ELF32BE>;
-template class MipsReginfoInputSection<object::ELF64LE>;
-template class MipsReginfoInputSection<object::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>;




More information about the llvm-commits mailing list