Remove a silly return.

llvm-svn: 243983
This commit is contained in:
Rafael Espindola 2015-08-04 14:08:11 +00:00
parent 30318518a5
commit 602592a048
1 changed files with 0 additions and 1 deletions

View File

@ -26,7 +26,6 @@ void SymbolTable<ELFT>::addFile(std::unique_ptr<InputFile> File) {
InputFile *FileP = File.release();
auto *P = cast<ObjectFile<ELFT>>(FileP);
addObject(P);
return;
}
template <class ELFT>