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

llvm-svn: 270453
This commit is contained in:
David Blaikie 2016-05-23 16:45:00 +00:00
parent 447831acae
commit a5ad4d691b
1 changed files with 2 additions and 0 deletions

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