From: Chandler Carruth Date: Tue, 6 Jun 2017 12:21:27 +0000 (+0000) Subject: Add a missing #include to a header. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d354ac7b09cf61a28f75dc911f6860915cbbbf2;p=llvm 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 --- 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 {