[llvm] r270453 - llvm-dwp: Fix the build by moving DWPStringPool into the llvm namespace

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Mon May 23 09:45:06 PDT 2016


Author: dblaikie
Date: Mon May 23 11:45:00 2016
New Revision: 270453

URL: http://llvm.org/viewvc/llvm-project?rev=270453&view=rev
Log:
llvm-dwp: Fix the build by moving DWPStringPool into the llvm namespace

Modified:
    llvm/trunk/tools/llvm-dwp/DWPStringPool.h

Modified: llvm/trunk/tools/llvm-dwp/DWPStringPool.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-dwp/DWPStringPool.h?rev=270453&r1=270452&r2=270453&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-dwp/DWPStringPool.h (original)
+++ llvm/trunk/tools/llvm-dwp/DWPStringPool.h Mon May 23 11:45:00 2016
@@ -6,6 +6,7 @@
 #include "llvm/MC/MCStreamer.h"
 #include <cassert>
 
+namespace llvm {
 class DWPStringPool {
 
   struct CStrDenseMapInfo {
@@ -50,5 +51,6 @@ public:
     return Pair.first->second;
   }
 };
+}
 
 #endif




More information about the llvm-commits mailing list