From b9371ce55251da034ac5afad2bc33d9b8f8ff9b4 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 19 Nov 2004 03:27:05 +0000 Subject: [PATCH] Eliminate unsightly ;; git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17979 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Linker/LinkArchives.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Linker/LinkArchives.cpp b/lib/Linker/LinkArchives.cpp index d15afaf85d6..0d770f56f13 100644 --- a/lib/Linker/LinkArchives.cpp +++ b/lib/Linker/LinkArchives.cpp @@ -208,7 +208,7 @@ bool llvm::LinkInArchive(Module *M, // findModulesDefiningSymbols are ones that the archive does not define. So // we add them to the NotDefinedByArchive variable now. NotDefinedByArchive.insert(UndefinedSymbols.begin(), - UndefinedSymbols.end());; + UndefinedSymbols.end()); // Loop over all the ModuleProviders that we got back from the archive for (std::set::iterator I=Modules.begin(), E=Modules.end();