From 41f8084128393c838a0dd64024bac2a0ccf3e52c Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 4 May 2016 21:06:12 +0000 Subject: [PATCH] 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 --- unittests/DebugInfo/PDB/PDBApiTest.cpp | 1 + 1 file changed, 1 insertion(+) 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 { -- 2.50.1