aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-upgrade/ParserInternals.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-02 15:16:01 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-02 15:16:01 +0000
commitf8483657b35f5877ccdf0d056adb8cb55a490c8d (patch)
tree4216e890d21124cd39d7f12d2741f2e877f65423 /tools/llvm-upgrade/ParserInternals.h
parent7a33f8d7cd48c7ab545094d342bca3a6e93ed1a0 (diff)
Keep lists of values so they can be examined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32120 91177308-0d34-0410-b5e6-96231b3b80d8
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