summaryrefslogtreecommitdiff
path: root/ragel/parsetree.h
diff options
context:
space:
mode:
Diffstat (limited to 'ragel/parsetree.h')
-rw-r--r--ragel/parsetree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ragel/parsetree.h b/ragel/parsetree.h
index dd38678..954542e 100644
--- a/ragel/parsetree.h
+++ b/ragel/parsetree.h
@@ -385,11 +385,11 @@ struct Expression
/* Construct with an expression on the left and a term on the right. */
Expression( Expression *expression, Term *term, Type type ) :
expression(expression), term(term),
- builtin(builtin), type(type), prev(this), next(this) { }
+ type(type), prev(this), next(this) { }
/* Construct with only a term. */
Expression( Term *term ) :
- expression(0), term(term), builtin(builtin),
+ expression(0), term(term),
type(TermType) , prev(this), next(this) { }
/* Construct with a builtin type. */