summaryrefslogtreecommitdiff
path: root/colm/parsedata.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-05-17 09:05:31 -0400
committerAdrian Thurston <thurston@complang.org>2012-05-17 09:05:31 -0400
commitc29e6a911513cac0fb6b780ac052a92fb70b8f96 (patch)
tree559930c840d63f4c5a5c653c5ff337c8d62135aa /colm/parsedata.h
parent830657d3dc49c3276c1c3e5ff8fe76908022fb3c (diff)
downloadcolm-c29e6a911513cac0fb6b780ac052a92fb70b8f96.tar.gz
Use the parse trees in the bindings array. Probably can turn this into a bit in
the parse tree, but that is a change for another day.
Diffstat (limited to 'colm/parsedata.h')
-rw-r--r--colm/parsedata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/colm/parsedata.h b/colm/parsedata.h
index 8d2f4014..695a36a2 100644
--- a/colm/parsedata.h
+++ b/colm/parsedata.h
@@ -76,7 +76,7 @@ struct Definition;
* runtime code. The runtime functions that access it are defined in
* ctinput.cpp and stubbed in fsmcodegen.cpp */
struct Bindings
- : public Vector<Tree*>
+ : public Vector<ParseTree*>
{};
struct DefListEl { Definition *prev, *next; };