s/#ifdef/#if/g
This commit is contained in:
parent
5d7138e7d3
commit
6345cf2b8b
|
@ -442,7 +442,7 @@ gc_finalize_object(pic_state *pic, struct object *obj)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef PIC_USE_BITMAPGC
|
||||
#if PIC_USE_BITMAPGC
|
||||
# include "./gc/bitmap.c"
|
||||
#else
|
||||
# include "./gc/markandsweep.c"
|
||||
|
|
|
@ -17,7 +17,7 @@ KHASH_DECLARE(env, struct identifier *, symbol *)
|
|||
KHASH_DECLARE(dict, symbol *, pic_value)
|
||||
KHASH_DECLARE(weak, struct object *, pic_value)
|
||||
|
||||
#ifdef PIC_USE_BITMAPGC
|
||||
#if PIC_USE_BITMAPGC
|
||||
# define OBJECT_HEADER \
|
||||
unsigned char tt;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue