summaryrefslogtreecommitdiff
path: root/colm/parsetree.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/parsetree.h')
-rw-r--r--colm/parsetree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/colm/parsetree.h b/colm/parsetree.h
index 9e65bf6d..76b35702 100644
--- a/colm/parsetree.h
+++ b/colm/parsetree.h
@@ -2800,11 +2800,11 @@ struct LangStmt
struct CodeBlock
{
- CodeBlock( StmtList *stmtList )
+ CodeBlock( StmtList *stmtList, ObjectDef *localFrame )
:
frameId(-1),
stmtList(stmtList),
- localFrame(0),
+ localFrame(localFrame),
context(0) {}
void compile( Compiler *pd, CodeVect &code ) const;