summaryrefslogtreecommitdiff
path: root/src/parsetree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsetree.h')
-rw-r--r--src/parsetree.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/parsetree.h b/src/parsetree.h
index 9dee081d..db4e2900 100644
--- a/src/parsetree.h
+++ b/src/parsetree.h
@@ -1503,6 +1503,16 @@ struct ReplItem
FactorType
};
+ ReplItem()
+ :
+ type((Type)-1),
+ expr(0),
+ langEl(0),
+ factor(0),
+ bindId(-1)
+ {
+ }
+
static ReplItem *cons( const InputLoc &loc, Type type, const String &data )
{
ReplItem *r = new ReplItem;