Eliminate unsightly ;;
authorReid Spencer <rspencer@reidspencer.com>
Fri, 19 Nov 2004 03:27:05 +0000 (03:27 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 19 Nov 2004 03:27:05 +0000 (03:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17979 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Linker/LinkArchives.cpp

index d15afaf85d6791fa6f8a53063625a7edcadcb622..0d770f56f13e209e185e41fb47f9e45b8a902d5d 100644 (file)
@@ -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<ModuleProvider*>::iterator I=Modules.begin(), E=Modules.end();