Fixed GC static library

This commit is contained in:
Victor Olin 2023-03-21 13:09:14 +01:00
parent bba6afeff8
commit 75fb24e369
6 changed files with 27 additions and 8 deletions

View file

@ -14,6 +14,8 @@ int main() {
init_gc(heap);
frame_test(heap);
heap->dispose();
return 0;
}
@ -52,6 +54,7 @@ void init_gc(GC::Heap *heap){
std::cout << "\n\n INITIALIZING THE HEAP" << std::endl;
std::cout << "===========================" << std::endl;
heap->init();
heap->set_profiler(true);
std::cout << "===========================" << std::endl;
}