diff options
author | Zachary Turner <zturner@google.com> | 2016-05-04 21:06:12 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-05-04 21:06:12 +0000 |
commit | e13787ef3fd803cd861d14c25493f4b140f9e1aa (patch) | |
tree | 746eac96d2ced96a0eac35293b10b63806f2cce5 | |
parent | 0cfed297deab4872d7038f4919be38aee7252e29 (diff) | |
download | bcm5719-llvm-e13787ef3fd803cd861d14c25493f4b140f9e1aa.tar.gz bcm5719-llvm-e13787ef3fd803cd861d14c25493f4b140f9e1aa.zip |
Fix build of DebugInfoPDBTests.
Missing a using statement.
llvm-svn: 268552
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index 736a6ccb0de..cd0f928a08a 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -50,6 +50,7 @@ #include "llvm/DebugInfo/PDB/PDBTypes.h" #include "gtest/gtest.h" using namespace llvm; +using namespace llvm::pdb; namespace { |