Remove a nested anonymous namespace.
[oota-llvm.git] / lib / Linker / LinkModules.cpp
index e57a37fb4a0d863b841923feacbdde2a2d011c10..aa0f961e3da974ade11b88b2898c7b2d26af34d5 100644 (file)
@@ -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.