diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2017-06-06 12:21:27 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2017-06-06 12:21:27 +0000 |
| commit | ad01b84212691b92c41c033916a31da6a873514c (patch) | |
| tree | fce80a7387aa8f1a6aa88215d31ccf9e9a4aa488 /llvm | |
| parent | 185ddeffd47f1df6b9b12db0900e71009b4a70f4 (diff) | |
| download | bcm5719-llvm-ad01b84212691b92c41c033916a31da6a873514c.tar.gz bcm5719-llvm-ad01b84212691b92c41c033916a31da6a873514c.zip | |
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.
llvm-svn: 304789
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h b/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h index b206ff59a6a..f779cd1f4be 100644 --- a/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h +++ b/llvm/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 { |

