From fbc90b1bb1665585a4c3f88d17f4a1a6310226a0 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 25 Nov 2014 06:07:51 +0000 Subject: [PATCH] Remove a nested anonymous namespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222728 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Linker/LinkModules.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index e57a37fb4a0..aa0f961e3da 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -383,7 +383,6 @@ namespace { Value *materializeValueFor(Value *V) override; }; - namespace { class LinkDiagnosticInfo : public DiagnosticInfo { const Twine &Msg; @@ -395,7 +394,6 @@ namespace { const Twine &Msg) : DiagnosticInfo(DK_Linker, Severity), Msg(Msg) {} void LinkDiagnosticInfo::print(DiagnosticPrinter &DP) const { DP << Msg; } - } /// This is an implementation class for the LinkModules function, which is the /// entrypoint for this file.