[ELF] - Remove unnecessary template #4. NFC.
OutputSectionFactory has no ELFT templates anymore.
llvm-svn: 297720
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp
index c3f68ab..c4795f0 100644
--- a/lld/ELF/Writer.cpp
+++ b/lld/ELF/Writer.cpp
@@ -937,7 +937,7 @@
template <class ELFT> void Writer<ELFT>::createSections() {
for (InputSectionBase *IS : InputSections)
if (IS)
- Factory.addInputSec<ELFT>(IS, getOutputSectionName(IS->Name));
+ Factory.addInputSec(IS, getOutputSectionName(IS->Name));
sortBySymbolsOrder<ELFT>(OutputSections);
sortInitFini<ELFT>(findSection(".init_array"));