[LLD][ELF] - Use auto. NFC.

This addresses the missed review comment.

git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@348480 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/ELF/ScriptParser.cpp b/ELF/ScriptParser.cpp
index 8140677..eee3f0e 100644
--- a/ELF/ScriptParser.cpp
+++ b/ELF/ScriptParser.cpp
@@ -857,7 +857,7 @@
       // We have a file name and no input sections description. It is not a
       // commonly used syntax, but still acceptable. In that case, all sections
       // from the file will be included.
-      InputSectionDescription *ISD = make<InputSectionDescription>(Tok);
+      auto *ISD = make<InputSectionDescription>(Tok);
       ISD->SectionPatterns.push_back({{}, StringMatcher({"*"})});
       Cmd->SectionCommands.push_back(ISD);
     }