aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-upgrade/ParserInternals.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvm-upgrade/ParserInternals.h')
-rw-r--r--tools/llvm-upgrade/ParserInternals.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/llvm-upgrade/ParserInternals.h b/tools/llvm-upgrade/ParserInternals.h
index 5dcdce89e8..f85d069f3f 100644
--- a/tools/llvm-upgrade/ParserInternals.h
+++ b/tools/llvm-upgrade/ParserInternals.h
@@ -17,6 +17,7 @@
#include <string>
#include <istream>
+#include <vector>
// Global variables exported from the lexer...
@@ -110,4 +111,7 @@ struct ConstInfo {
void destroy() { delete cnst; type.destroy(); }
};
+typedef std::vector<ValueInfo> ValueList;
+
+
#endif