mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-17 01:37:34 +02:00
Qualify static function
This commit is contained in:
parent
3706647583
commit
b73f68cc8a
1 changed files with 1 additions and 1 deletions
|
@ -5365,7 +5365,7 @@ static char *gc_fixup_moved_obj(gc_thread_data * thd, int *alloci, char *obj,
|
||||||
return (char *)hp;
|
return (char *)hp;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *gc_move(char *obj, gc_thread_data * thd, int *alloci, int *heap_grown)
|
static char *gc_move(char *obj, gc_thread_data * thd, int *alloci, int *heap_grown)
|
||||||
{
|
{
|
||||||
gc_heap_root *heap = thd->heap;
|
gc_heap_root *heap = thd->heap;
|
||||||
if (!is_object_type(obj))
|
if (!is_object_type(obj))
|
||||||
|
|
Loading…
Add table
Reference in a new issue