From a5ad4d691bd1e7db190362597bca638926b18699 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Mon, 23 May 2016 16:45:00 +0000 Subject: [PATCH] llvm-dwp: Fix the build by moving DWPStringPool into the llvm namespace llvm-svn: 270453 --- llvm/tools/llvm-dwp/DWPStringPool.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/tools/llvm-dwp/DWPStringPool.h b/llvm/tools/llvm-dwp/DWPStringPool.h index 8923e4c426e3..7d41176b5619 100644 --- a/llvm/tools/llvm-dwp/DWPStringPool.h +++ b/llvm/tools/llvm-dwp/DWPStringPool.h @@ -6,6 +6,7 @@ #include "llvm/MC/MCStreamer.h" #include +namespace llvm { class DWPStringPool { struct CStrDenseMapInfo { @@ -50,5 +51,6 @@ public: return Pair.first->second; } }; +} #endif