From: Zachary Turner Date: Wed, 4 May 2016 21:06:12 +0000 (+0000) Subject: Fix build of DebugInfoPDBTests. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41f8084128393c838a0dd64024bac2a0ccf3e52c;p=llvm Fix build of DebugInfoPDBTests. Missing a using statement. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268552 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/DebugInfo/PDB/PDBApiTest.cpp b/unittests/DebugInfo/PDB/PDBApiTest.cpp index 736a6ccb0de..cd0f928a08a 100644 --- a/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/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 {