remove static from function that isn't

This commit is contained in:
dzaima 2021-10-15 12:08:48 +03:00
parent 5c59f0de6f
commit ef230f8dc0

View File

@ -51,7 +51,7 @@ static void gc_resetTag(Value* x) {
x->mmInfo&= 0x7F;
}
static void gc_visitRoots() {
void gc_visitRoots() {
for (u32 i = 0; i < gc_rootSz; i++) gc_roots[i]();
for (u32 i = 0; i < gc_rootObjSz; i++) mm_visit(gc_rootObjs[i]);
}