diff options
Diffstat (limited to 'colm/conscolm.cc')
-rw-r--r-- | colm/conscolm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/colm/conscolm.cc b/colm/conscolm.cc index 2d4ab2b6..2dba86ba 100644 --- a/colm/conscolm.cc +++ b/colm/conscolm.cc @@ -330,7 +330,7 @@ void LoadColm::consExportError( StmtList *stmtList ) stmtList->append( programExport ); } -void LoadColm::go() +void LoadColm::go( long activeRealm ) { LoadColm::init(); @@ -341,7 +341,7 @@ void LoadColm::go() argv[1] = 0; colmInit( 0 ); - ColmProgram *program = colmNewProgram( &main_runtimeData ); + ColmProgram *program = colmNewProgram( &main_runtimeData, 0 ); colmRunProgram( program, 1, argv ); /* Extract the parse tree. */ |