summaryrefslogtreecommitdiff
path: root/colm/load.cc
diff options
context:
space:
mode:
Diffstat (limited to 'colm/load.cc')
-rw-r--r--colm/load.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/colm/load.cc b/colm/load.cc
index 95d3c084..10f42e3c 100644
--- a/colm/load.cc
+++ b/colm/load.cc
@@ -636,7 +636,7 @@ struct LoadSource
argv[0] = file.data;
argv[1] = 0;
- ColmProgram *program = colmNewProgram( &main_runtimeData );
+ ColmProgram *program = colmNewProgram( &main_runtimeData, 0 );
colmRunProgram( program, 1, argv );
/* Extract the parse tree. */
@@ -1881,10 +1881,10 @@ struct LoadSource
return stmtList;
}
- virtual void go();
+ virtual void go( long activeRealm );
};
-void LoadSource::go()
+void LoadSource::go( long activeRealm )
{
LoadSource::init();
@@ -1893,7 +1893,7 @@ void LoadSource::go()
argv[1] = 0;
colmInit( 0 );
- ColmProgram *program = colmNewProgram( &main_runtimeData );
+ ColmProgram *program = colmNewProgram( &main_runtimeData, activeRealm );
colmRunProgram( program, 1, argv );
/* Extract the parse tree. */