summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index 60dd8e1..cc97222 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -69,7 +69,8 @@ private:
69private: 69private:
70 Lexer &lex; 70 Lexer &lex;
71 typedef Bu::List<Token> TokenStack; 71 typedef Bu::List<Token> TokenStack;
72 TokenStack tsParse; 72 TokenStack tsTerminal;
73 TokenStack tsNonTerminal;
73 Expression *pCurExp; 74 Expression *pCurExp;
74}; 75};
75 76