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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270453 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2016-05-23 16:45:00 +00:00
parent 000b227286
commit 5131c267e1

View File

@ -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