[llvm] r304789 - Add a missing #include to a header.
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 6 05:21:27 PDT 2017
Author: chandlerc
Date: Tue Jun 6 07:21:27 2017
New Revision: 304789
URL: http://llvm.org/viewvc/llvm-project?rev=304789&view=rev
Log:
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.
Modified:
llvm/trunk/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
Modified: llvm/trunk/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h?rev=304789&r1=304788&r2=304789&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h Tue Jun 6 07:21:27 2017
@@ -12,6 +12,7 @@
#include "DIASupport.h"
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
+#include "llvm/DebugInfo/PDB/PDBSymbol.h"
namespace llvm {
namespace pdb {
More information about the llvm-commits
mailing list