The SymbolTable doesn't need to be a template.

It was already using just code that is common to all object files.

llvm-svn: 243985
diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp
index 1391056..d70589f 100644
--- a/lld/ELF/Driver.cpp
+++ b/lld/ELF/Driver.cpp
@@ -86,7 +86,7 @@
     error("no input files.");
 
   // Create a symbol table.
-  SymbolTable<object::ELF64LE> Symtab;
+  SymbolTable Symtab;
 
   // Parse all input files and put all symbols to the symbol table.
   // The symbol table will take care of name resolution.