From 4d354ac7b09cf61a28f75dc911f6860915cbbbf2 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 6 Jun 2017 12:21:27 +0000 Subject: [PATCH] Add a missing #include to a header. This was masked by lucky #include ordering in the .cpp files and uncovered when we moved to the canonical ordering because the primary header was included first (yay!). Unfortunately, I can't build this locally so took a build-bot iteration to find it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304789 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h b/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h index b206ff59a6a..f779cd1f4be 100644 --- a/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h +++ b/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h @@ -12,6 +12,7 @@ #include "DIASupport.h" #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h" +#include "llvm/DebugInfo/PDB/PDBSymbol.h" namespace llvm { namespace pdb { -- 2.50.1