Delete unnecessary template.

llvm-svn: 280237
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp
index 11c15a3..a3c59d4 100644
--- a/lld/ELF/Writer.cpp
+++ b/lld/ELF/Writer.cpp
@@ -229,11 +229,10 @@
   Out<ELFT>::Pool.clear();
 }
 
-template <class ELFT>
-static std::vector<DefinedCommon<ELFT> *> getCommonSymbols() {
-  std::vector<DefinedCommon<ELFT> *> V;
+template <class ELFT> static std::vector<DefinedCommon *> getCommonSymbols() {
+  std::vector<DefinedCommon *> V;
   for (Symbol *S : Symtab<ELFT>::X->getSymbols())
-    if (auto *B = dyn_cast<DefinedCommon<ELFT>>(S->body()))
+    if (auto *B = dyn_cast<DefinedCommon>(S->body()))
       V.push_back(B);
   return V;
 }